3
在geoJSON featureCollection中具有properties元素是否有效?
拥有一个具有featureCollection-element作为父元素的properties元素是否有效? 根据geojson.org,这是有效的: { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": {"type": "Point", "coordinates": [102.0, 0.5]}, "properties": {"prop0": "value0"} } ] } 但是我找不到它是否有效,或者是否无效: { "type": "FeatureCollection", "properties" : { "description" : "This is the geometry for..." } "features": [ { "type": "Feature", "geometry": {"type": "Point", "coordinates": [102.0, 0.5]}, "properties": {"prop0": …
16
geojson