在Android平台上使用Google Map Data API
我正在查看 Google 地图数据 API,想知道是否可以遵循他们的 Java开发指南在Android平台上使用它?我想在手机上显示我在 Google 地图上创建的路线。
理想情况下,这将通过 MapView 进行,但如果我需要以不同的方式进行操作,我也可以。
谢谢, 罗布
编辑:我觉得我的问题可能有点过于开放式。我不完全理解 Google Data API 如何与 Google Maps 配合使用。希望有人能给我指出正确的方向,但如果有人认为这是一个坏问题,请告诉我,以便我可以删除它。
I was checking out the Google Maps Data API and I was wondering if I can follow their Java Development guide to use it on the Android platform? I want to display routes that I have created on Google Maps on the phone.
Ideally this would be through a MapView but if I need to do it a different way I could.
Thanks,
Rob
EDIT: I feel that my question is probably a little too open ended. I don't completely understand how the Google Data API works with Google Maps. Hopefully someone can point me in the right direction but if anyone thinks that this is a bad question let me know so I can delete it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以,一些 Android 应用程序使用地图数据 API(例如“我的足迹”)。但是,您需要解析从地图数据返回的 KML,然后编写代码以手动将其添加到 MapView。
Yes, you can, several android apps use the Maps Data API (My Tracks, for instance). However, you'll need to parse the KML returned from the maps data and then write code to add it to MapView manually.