如何将标记定位到正确的位置?
正如您在我的屏幕截图中看到的,标记放置在正确的坐标位置旁边,如何制作它放置在正确的位置(在圆的中心)?
在我的代码中:
Drawable icon = getResources().getDrawable(R.drawable.marker);
icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight());
setBounds() 上的值是我应该更改以移动标记的位置吗? 我已经尝试过了,但没有任何改变 那么,如何固定位置呢?
谢谢,
我喜欢 stackoverflow,呵呵 :D
As you can see on my screenshot, the marker is placed beside of the correct coordinate position, how to make it placed on the correct position (in the center of the circle) ?
in my code :
Drawable icon = getResources().getDrawable(R.drawable.marker);
icon.setBounds(0, 0, icon.getIntrinsicWidth(), icon.getIntrinsicHeight());
are the values on the setBounds() are the positions that i should change to move the marker?
i've tried it but nothing changes
so, how to fix the position?
thanks
i love stackoverflow, hehe :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这会有所帮助,因为我不知道你是如何实现它的:
http://developer.android.com/guide/tutorials/views/hello -mapview.html
Maybe this will help, as I don't know how you are implementing it:
http://developer.android.com/guide/tutorials/views/hello-mapview.html