学习笔记学习笔记
主站博客
面试
前端
开发工具
Cesium
GitHub
主站博客
面试
前端
开发工具
Cesium
GitHub
  • 笔记汇总
  • advanced

    • 高级
  • basic

    • cesium 是什么
  • case

    • 初始化用例
  • Gis

    • date-format

      • 儒略日(Julian Day)
    • file-format

      • geojson

        • GeoJSON
      • summary

        • GIS常见格式
    • service

      • 服务规范
    • terminology

      • Cartesian 是怎么翻译成笛卡尔的?

GeoJSON

一种标准格式

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.

在 GitHub 上编辑此页
上次更新:
贡献者: 国wei