4

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

mapView.setReticleDrawMode(ReticleDrawMode.DRAW_RETICLE_UNDER);

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

4

1 回答 1

7

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

我终于删除了定位销,并在地图上添加了一个类似的 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));

定位销

于 2012-12-13T17:34:51.393 回答