【发布时间】:2017-03-20 15:27:49
【问题描述】:
我正在尝试使用 geojson 数据在地图上放置点。当我通过验证器运行我的 geojson 数据时,这些点出现在北极圈上方的地图边缘,我不知道为什么。我计划将这些数据与传单地图和使用 angularjs 构建的项目一起使用。如果有人可以在下面我的 geojson 代码中添加有关任何问题的见解,或者在使用传单和角度时要注意的事项,我将不胜感激!谢谢! 这是我的geojson代码
{"type":"FeatureCollection",
"features":[
{"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[36.1199, -86.7775]
},
"properties":{
"name":"Kroger"
}
},
{"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[36.0903, -86.7323]
},
"properties":{
"name":"ALDI"
}
},
{"type":"Feature",
"geometry":{
"type":"Point",
"coordinates":[36.1266, -86.8474]
},
"properties":{
"name":"Publix"
}
}
]
}
【问题讨论】: