我应该使用什么 MapView 或 Map Intent
我想创建一个地图视图,其中包含文本项和其下方的直接按钮。
因此,当活动启动时,它将在上一个活动中指定的位置上放置一个图钉。然后会有一个位置名称,然后是一个直接我按钮。单击该按钮时,它将显示从当前位置出发的路线。
我如何在地图视图本身上放置一个图钉
你会建议我开始一个地图意图来显示方向,或者我可以更新地图吗查看方向。 (我将如何做这两件事)
I would like to create a mapview that will have text items and a direct me button under it.
So when the activity starts up, it will drop a pin on a location specificed in the previous activity. There will then be a location name and then a direct me button. when the button is clicked it will display the route from the current location.
how do i drop a pin on the mapview itself
Would you reccomend i begin a map intent to show the directions, or could i just update the map view with the directions. (how would i go about doing both)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
OverlayItem
创建一个ItemizedOverlay
并将其添加到地图中。 这是一个示例应用程序演示了这一点。没有“地图意图显示方向”。就如何“仅使用方向更新地图视图”而言,第 1 步是弄清楚您将在哪里获取方向,因为没有内置的 Android API 可以实现这一点。
Create an
ItemizedOverlay
with anOverlayItem
and add it to your map. Here is a sample application demonstrating this.There is no "map intent to show the directions". In terms of how you would "just update the map view with the directions", step #1 is to figure out where you are going to get the directions, since there is no built-in Android API for that.