MyLocationOverlay 将标记更改为 Google 地图默认值

发布于 2024-11-25 06:22:33 字数 299 浏览 1 评论 0原文

我正在调查 MapActivities,我想做的是将 MyLocationOverlay 的默认标记从默认圆圈更改为谷歌地图使用的标记(蓝色箭头) 有什么简单的方法可以做到这一点吗?提前致谢 这是当前默认制作者的图像 http://blogs.conchango.com/photos/conchango_bloggers/images/13878 /原始.aspx

I'm investigating MapActivities, and what I'm attempting to do is to change the default marker of MyLocationOverlay from the default circle to the marker that google maps uses (the blue arrow head)
Is there any easy way of doing that? thanks in advance
Here is an image with the current default maker
http://blogs.conchango.com/photos/conchango_bloggers/images/13878/original.aspx

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

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

发布评论

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

评论(1

浮华 2024-12-02 06:22:33

您必须使用Overlay子类的onDraw()方法自己绘制圆。
这是在Android MapView上画一个圆圈发布如何做到这一点。

当谈论蓝色箭头
Android.jar 中有一个可绘制对象列表。您可以使用它们的 id 进行访问(如果它们是公开的),例如:

android.R.any_id

看看这个页面 。特别是在ic_maps_indicator_current_position

You have to draw the circle by yourself using onDraw() method of subclass of Overlay.
Here is a Draw A Circle On Android MapView post how to do that.

And when talking about blue arrow head
There is a list of drawable which are packaged in Android.jar. You can access the using their ids, (if they are public) something like:

android.R.any_id

Have a look at this page. specifically at ic_maps_indicator_current_position

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