//這是一個簡單的矩形(坐標系: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 是用于描述地理空間信息的數(shù)據(jù)格式趁怔。GeoJSON 不是一種新的格式队腐,其語法規(guī)范是符合 JSON 格式的蚕捉,只不過對其名稱進行了規(guī)范,專門用于表示地理信息柴淘。
(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 的值是一個數(shù)組辕狰,數(shù)組的每一項都是一個特征對象。
摘自:
作者:宥MySunshine
鏈接:http://www.reibang.com/p/465702337744