如何反向将谷歌地图地址与 json 格式的经纬度配对?
我知道如何以 json 格式将谷歌地图与 lac、ci 参数进行反向配对,但我可以
找不到像这样用纬度、长参数进行解析的方法,这不可能吗?
提前致谢。
i know how to do reverse paring google map with lac, ci params in a json format, but i can
not find the way like this do a parse with lat, long params, is it not possible?
thanks advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试Google 地理编码 API
Try The Google Geocoding API
由于您使用
google-maps
关键字标记了此内容,因此您还可以直接从 Google 地图中使用地理编码 API(示例适用于 Gmaps API V3):此代码段将获取地址的几何位置,并绘制图它在地图中(位于 gmaps.map 中)。它还将确保所有标记都位于地图的范围内。
Since you tagged this with the
google-maps
keyword, you can also the Geocoding API directly from within Google Maps (example is for Gmaps API V3):This snippet will fetch the address' geometry location, and plots it in the map (which lives in gmaps.map). It'll also make sure that all markers fit within the bounds of the map.