地图上的移动

发布于 2024-12-25 00:25:14 字数 491 浏览 0 评论 0原文

如何将箭头(标记)指向用户的移动?

在模拟器上,我朝红色箭头的方向移动(skrinshot) ,并且标记向侧面移动。

我的代码,在地图上添加箭头:

LinearLayout vGoing = (LinearLayout) View.inflate(getApplicationContext(), R.layout.mylocationidentificationgoing, null);
mapView.addView(vGoing, new MapView.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,point,MapView.LayoutParams.BOTTOM_CENTER));

How do you direct an arrow (marker) to the movement of the user?

On the emulator I move in the direction of a red arrow (skrinshot), and the marker goes sideways.

My code,which adds arrow on map:

LinearLayout vGoing = (LinearLayout) View.inflate(getApplicationContext(), R.layout.mylocationidentificationgoing, null);
mapView.addView(vGoing, new MapView.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,point,MapView.LayoutParams.BOTTOM_CENTER));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

故事未完 2025-01-01 00:25:14

您可以使用 GPS 跟踪经纬度的增量变化,并使用它来显示箭头的方向。

You can use GPS to track delta changes in Lat Long and use that to show direction of the arrow.

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