Cesium GeoJson数据格式

//这是一个简单的矩形(坐标系:WGS_84)
{
    "type":"FeatureCollection", 
    "features": [
        {
        "type":"Feature",
        "geometry":{
            "type":"Polygon",
            "coordinates":
            [
                [[117.42218831167838,31.68971206252246],
                [118.8025942451759,31.685801564127132],
                [118.79961418869482,30.633841626314336],
                [117.41920825519742,30.637752124709664],
                [117.42218831167838,31.68971206252246]]
            ]
        },
        "properties":{"Id":0}
        }
    ]
}

(1)GeoJson 是用于描述地理空间信息的数据格式。GeoJSON 不是一种新的格式,其语法规范是符合 JSON 格式的,只不过对其名称进行了规范,专门用于表示地理信息。
(2)GeoJson 的最外层是一个单独的对象(object)。这个对象有:

几何体(Geometry)
特征(Feature)
特征集合(FeatureCollection)
每一个对象都有一个成员变量 coordinates。
(3)type 的值为 GeometryCollection,那么该对象一定要有变量 geometries。

{
    "type": "GeometryCollection",
    "geometries": [
        {
            "type": "Point",
            "coordinates": [116.3232, 35.2154]
        },
        {
            "type": "LineString",
            "coordinates": [ [116.3232, 35.2154], [116.854,35.8854] ]
        }
    ]
}

type 的值为 Feature,那么此特征对象必须包含有变量 geometry,表示几何体,geometry 的值必须是几何体对象。此特征对象还包含有一个 properties,表示特性,properties 的值可以是任意 JSON 对象或 null。

{
    "type": "Feature",
    "properties": {
        "name": "合肥"
    },
    "geometry": {
        "type": "Point",
        "coordinates": [ 116.3751, 31.5631]
    }
}

如果 type 的值为 FeatureCollection(特征集合),则该对象必须有一个名称为 features 的成员。features 的值是一个数组,数组的每一项都是一个特征对象。


摘自:
作者:宥MySunshine
链接:https://www.jianshu.com/p/465702337744

你可能感兴趣的:(Cesium GeoJson数据格式)