我是传单js的新手
阅读传单js网站的geojson部分。
一个简单的问题,geojson格式的坐标,与lay / lng相同,我们可以从谷歌地图获得?
麦
答案 0 :(得分:0)
是的,但你必须反转lat和lng。
例如,如果您点击巴黎,您将获得GoogleMap的以下坐标:48.857031,2.346526
如果您使用http://geojson.io/生成一些geojson,您将获得:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [
2.349529266357422,
48.856414043180365
]
}
}
]
}
另请注意,GoogleMap仅处理6位小数(这是足够的)