作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
尝试更改覆盖项目的标记时,我注意到 setMarker() 使该项目不可见。这是代码示例。
//Create new marker
Drawable icon = this.getResources().getDrawable(R.drawable.marker);
//Set the new marker to the overlay
overlayItem.setMarker(icon);
最佳答案
需要为Drawable指定一个边界矩形:
//Create new marker
Drawable icon = this.getResources().getDrawable(R.drawable.marker);
//Set the bounding for the drawable
icon.setBounds(
0 - icon.getIntrinsicWidth() / 2, 0 - icon.getIntrinsicHeight(),
icon.getIntrinsicWidth() / 2, 0);
//Set the new marker to the overlay
overlayItem.setMarker(icon);
关于java - Android OverlayItem.setMarker() : Change the marker for one item,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7505574/
我想在我的 map 上显示不同的标记。我能找到的一种解决方案是为每个标记定义一个新的叠加层。但后来我发现用 可以更容易地完成 OverlayItme.set Marker(Drawable marke
我查看了 github 上的文档,但找不到关于标记的更多信息。这是他们给出的例子: https://github.com/tradingview/lightweight-charts/blob/ef8
尝试更改覆盖项目的标记时,我注意到 setMarker() 使该项目不可见。这是代码示例。 //Create new marker Drawable icon = this.getResources(
如果标记在我的标记数组中彼此重叠,则尝试偏移标记。我似乎无法阻止错误。我使用这个答案作为指导: https://stackoverflow.com/a/25615622/13249825 数据库中来自
我是一名优秀的程序员,十分优秀!