如何在 Google App Engine Java 上获取给定地址的纬度/经度值
谁能告诉我在处理 google app engine java 项目时是否有办法获取给定地址的纬度/经度值。我看到一些类,如 com.google.appengine.api.datastore.PostalAddress 等,但无法使用它们来实现我想要的。
Can anyone tell me if there is a way to get latitude/longitude values for a given address while working on google app engine java project. I see some classes like com.google.appengine.api.datastore.PostalAddress etc but could not use them to achieve what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要调用外部 API,例如 Google 地理编码 API。
You'll need to call an external API, like the Google Geocoding API.
您需要进行反向地理编码,当您传递纬度/经度以使用 Google 地图 API
You will need to do a reverse geocoding, which deals when you pass the Lat/Long to retrieve an address by using the Google Maps API