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

    • 文件格式

      • GIS常见格式
      • GeoJSON
    • 日期

      • 儒略日(Julian Day)
    • /cesium/gis/service

      • 服务规范
    • /cesium/gis/terminology

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

    • cesium 是什么
  • 简单用例

    • 初始化用例
  • 高级用法

    • 高级
    • 默认主题
    • 插件

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
Prev
GIS常见格式