Mongoose Schema for geoJson coordinates

前端 未结 3 2180
清歌不尽
清歌不尽 2021-02-09 00:43

I tried to create a schema for geojson but have had some problems with syntax for coordinates.

Here\'s my current code:

var DataSchema = new Schema({
           


        
3条回答
  •  死守一世寂寞
    2021-02-09 01:17

    A GeoJSON field has to be included a geometry type as a string. So a GeoJSON field must be defined like the following;

    geometry: { type: { type: String }, coordinates: [Number] }
    

    or if you want to define a default value you might use the below line;

    geometry: { type: { type: String, default:'Point' }, coordinates: [Number] }
    

    Good luck..

提交回复
热议问题