我应该使用什么 MapView 或 Map Intent

发布于 2024-11-13 22:45:22 字数 230 浏览 1 评论 0原文

我想创建一个地图视图,其中包含文本项和其下方的直接按钮。

因此,当活动启动时,它将在上一个活动中指定的位置上放置一个图钉。然后会有一个位置名称,然后是一个直接我按钮。单击该按钮时,它将显示从当前位置出发的路线。

  1. 我如何在地图视图本身上放置一个图钉

  2. 你会建议我开始一个地图意图来显示方向,或者我可以更新地图吗查看方向。 (我将如何做这两件事)

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.

  1. how do i drop a pin on the mapview itself

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶底世界 2024-11-20 22:45:22

如何在地图视图本身上放置图钉

使用 OverlayItem 创建一个 ItemizedOverlay 并将其添加到地图中。 这是一个示例应用程序演示了这一点。

您是否建议我开始绘制意图显示方向的地图,或者我可以仅使用方向更新地图视图。 (我该如何去做这两件事)

没有“地图意图显示方向”。就如何“仅使用方向更新地图视图”而言,第 1 步是弄清楚您将在哪里获取方向,因为没有内置的 Android API 可以实现这一点。

how do i drop a pin on the mapview itself

Create an ItemizedOverlay with an OverlayItem and add it to your map. Here is a sample application demonstrating this.

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)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文