gpt4 book ai didi

android - 谷歌地图 Android API v2 : My location marker always over other markers?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:30:53 26 4
gpt4 key购买 nike

目前正在将一个使用 Google map 的 Android 应用程序迁移到 Google Maps Android v2;我希望 map 显示内置位置标记以及自定义标记。在以前的库中,我曾经在自定义标记“下方”绘制位置标记,使用

mapView.setReticleDrawMode(ReticleDrawMode.DRAW_RETICLE_UNDER);

我在新 API 中找不到类似的选项。我错过了什么吗?

最佳答案

经过一番搜索,我找不到这样的选项。

我终于去掉了定位针,在 map 上加了一个类似的Marker和Circle;由于它是经典标记,因此它出现在其他标记下方。

map.setMyLocationEnabled(false);

// ...
// get the current location with Android LocationManager in some way
// ...

// then draw it on the map when it changes:
if (null == getMyLocation())
return;

if (null != locationMarker) {
locationMarker.remove();
}
if (null != locationCircle) {
locationCircle.remove();
}
LatLng loc = getMyLocation();

locationMarker = map.addMarker(new MarkerOptions()
.icon(BitmapDescriptorFactory
.fromResource(R.drawable.blue_pin_12))
.position(getMyLocation()).anchor(0.5f, 0.5f));

float accuracy = getMyLocationAccuracy();

locationCircle = map.addCircle(new CircleOptions().center(loc)
.radius(accuracy)
.strokeColor(Color.argb(255, 0, 153, 255))
.fillColor(Color.argb(30, 0, 153, 255)).strokeWidth(2));

Location pin

关于android - 谷歌地图 Android API v2 : My location marker always over other markers?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13804361/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com