featureCollection要素を親とする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": "value0"}
}
]
}
下の答えによれば、そこに置くことは無効ではありませんが、プログラム/スクリプトはそのことを知りません。
それでは、質問を言い換えてみましょう:(どこ)プロパティについての説明的な情報を全体として入れることは可能ですか??