GIS-什么是GeoJson

版权声明:知识无界限,大家可自由转载。 https://blog.csdn.net/xidianbaby/article/details/89320075

GeoJSON is a format for encoding a variety of geographic data structures.

{
  "type": "Feature",
  "geometry": {
    "type": "Point",
    "coordinates": [125.6, 10.1]
  },
  "properties": {
    "name": "Dinagat Islands"
  }
}

GeoJSON supports the following geometry types: Point, LineString, Polygon, MultiPoint, MultiLineString, and MultiPolygon. Geometric objects with additional properties are Feature objects. Sets of features are contained by FeatureCollection objects.

官网:http://geojson.org/
中文翻译:https://www.oschina.net/translate/geojson-spec

猜你喜欢

转载自blog.csdn.net/xidianbaby/article/details/89320075
GIS
今日推荐