มันถูกต้องหรือไม่ที่จะมีองค์ประกอบคุณสมบัติที่มี featureCollection-element เป็นผู้ปกครอง?
นี่คือตาม 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"}
}
]
}
ตามคำตอบข้างล่างมันไม่ถูกต้องที่จะใส่มันไว้ แต่โปรแกรม / สคริปต์จะไม่รู้จักมัน
ดังนั้นฉันขอใช้ถ้อยคำใหม่คำถาม: (ที่ไหน) เป็นไปได้หรือไม่ที่จะนำข้อมูลเชิงอธิบายเกี่ยวกับคุณสมบัตินั้นมารวม?