通过 php 集成 Google 地图
我有所有信息城市名称、州、国家、街道名称、门牌号和邮政编码。我可以在 Google 地图中找到它吗?我该怎么做?我从哪里可以获得谷歌的API来解决此类问题?
I have all info City name,state,Country,street name,house number and zip code.Can i locate this in Google map.How will i do? From where i can get API for google for such problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里是所有基于 Google 地图构建的 API 的源代码以及文档。
http://code.google.com/apis/maps/index.html
Here the source for all the APIs built off of Google maps with documentation.
http://code.google.com/apis/maps/index.html
我假设您想获取您的地址的纬度/经度。您可以使用 Google 的地理编码器 api
http://code.google.com/apis/maps 来执行此操作/documentation/geocoding/
将它们添加到地图中
然后您可以使用其地图 api http://code.google.com/apis/maps/documentation/javascript/reference.html
I'm assuming you want to get the lat/lng for your addresses. You do this with google's geocoder api
http://code.google.com/apis/maps/documentation/geocoding/
Then you can add them to the map with their map api
http://code.google.com/apis/maps/documentation/javascript/reference.html
您可以使用 javascript 使用城市名称、州、国家、街道名称、门牌号和邮政编码来获取纬度和经度,将该纬度和经度存储在数据库中,或者根据需要使用该纬度和经度,您可以在谷歌地图中显示该位置。
You can get latitude and longitude using City name,state,Country,street name,house number and zip code using javascript, store that latitude and longitude in database or as you want and using that latitude and longitude you can show that location in google map.