mongoose-geojson-schemas
Version:
mongoose schema to support geojson fields
74 lines (63 loc) • 1.57 kB
JavaScript
/* @todo refactor to use geometry as base */
/* @todo refactor validations to utilities */
/* @todo refactor types to utilities */
/* dependencies */
const { Schema } = require('mongoose');
const { TYPE_MULTIPOINT } = require('./geojson');
/* constants */
const SCHEMA_OPTIONS =
({ timestamps: false, _id: false, id: false, emitIndexErrors: true });
/**
* @name MultiPoint
* @description GeoJSON MultiPoint Geometry.
* Coordinates of MultiPoint are an array of Point coordinates.
* @type {Schema}
* @since 0.1.0
* @version 0.1.0
* @example
* {
* type: 'MultiPoint',
* coordinates: [
* [100.0, 0.0],
* [101.0, 1.0]
* ]
* }
*
*/
exports.MultiPoint = new Schema({
/**
* @name type
* @description type of geojson geometry
* @type {Object}
* @since 0.1.0
* @version 0.1.0
*/
type: {
type: String,
default: TYPE_MULTIPOINT,
set: function () {
return TYPE_MULTIPOINT;
}
},
/**
* @name coordinates
* @description array of data pairs for multipoint. In format [ <x>, <y> ]
* or [ <longitude> , <latitude> ]
* @see {@link https://docs.mongodb.com/manual/reference/geojson}
* @see {@link https://docs.mongodb.com/manual/reference/geojson/#multipoint}
* @see {@link http://geojson.org/geojson-spec.html#multipoint}
* @type {Object}
* @since 0.1.0
* @version 0.1.0
* @example
* [
* [100.0, 0.0],
* [101.0, 1.0]
* ]
*/
coordinates: {
type: Array,
default: undefined
}
}, SCHEMA_OPTIONS);
;