使用谷歌地图API在地图上显示箭头

发布于 2024-11-06 18:59:23 字数 170 浏览 1 评论 0原文

我正在将谷歌地图 API 用于 Android 游戏,该游戏融合了现实世界中玩家的运动。我已经弄清楚如何制作标记来指示地图上的位置,但我想保持固定的地图缩放级别并使屏幕外标记在屏幕上显示为箭头。

任何人都知道地图 API 内部有一种方法可以做到这一点,而无需显式地计算出与对象的角度并旋转箭头图标以指向该方向。

I am using the google maps api for an android game that incorporates the players movement in the real world. I have figured out how to make markers indicating where something would be on the map, but I would like to keep a fixed map zoom level and have off-screen markers show up as arrows on the screen.

Anyone know of a way inside of the map API to do this without having to explicitly figuring out the angle to the object and rotating an arrow icon to point in that direction.

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

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

发布评论

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

评论(1

捶死心动 2024-11-13 18:59:23

我没有使用 Google API 的经验,但从简单的角度来看,如果您知道当前位置和标记位置,难道您不能只使用一些简单的向量数学来计算方向,从而计算箭头方向吗?

IE

MarkerPosition - CurrentPosition = TargetVector
TargetVector.normalize()

I don't have experience of the Google API, but from a simple point of view if you know the current location and the marker location couldn't you just use some simple vector maths to calculate the heading and, therefore, the arrow heading?

i.e.

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