我正在尝试展示一个包含点(大约 3000 个)的 geoJSON 的大型功能集。但是它不起作用,当我尝试将其添加到地图时我什么也看不到。我正在使用 Leaflet JS。我什至在 geojson.io 上尝试过,但这些点出现在地图之外。
在我看来,我使用的 geoJSON 格式不正确。
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [1.25147, 103.833183]
},
"properties": {
"id": "J_3767",
"type": "junction"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [1.267052, 103.817162]
},
"properties": {
"id": "J_3764",
"type": "junction"
}
}, ...
]
}
任何帮助,将不胜感激。谢谢!