如何在 Google 地图上放置图钉以及如何在 Google 地图上的对话框中获取当前地址?
我正在开发一款与谷歌地图相关的应用程序。我是谷歌地图的初学者。
我想做一个在我当前位置显示 Pin 图的应用程序。当我单击该引脚时,它会显示包含我当前地址的对话框。 “销钉是可移动的”。当我将图钉从 Google 地图上的一个位置移动到另一个位置时,对话框会显示该位置的地址。
所以请给我想法或参考网站。
I am working on one application which is related to Google map. I am a beginner in Google map.
I want to do an application which shows a Pin at my Current location. When I click on that pin it shows the dialog which contain my current address. "Pin is movable". When I move the pin from one location to other on Google map the dialog box show the address of that location.
So please give me idea or reference site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个示例项目,展示了一种拖放方式 -将
OverlayItems
放入ItemizedOverlay
中。您可以尝试使用
Geocoder
类获取给定纬度和经度的地址。请注意,您的项目比我为“Google 地图初学者”推荐的项目更高级。
Here is a sample project showing one way to drag-and-drop of
OverlayItems
in anItemizedOverlay
.You can try to use the
Geocoder
class to get an address given a latitude and longitude.Note that your project is more advanced than what I would recommend for "a beginner in Google map".