0

我正在使用 Mapbox SDK Android('com.mapbox.mapboxsdk:mapbox-android-sdk:4.1.1@aar' 和 'com.mapbox.mapboxsdk:mapbox-android-services:1.1.0@aar')。我使用离线地图并放置标记,但删除和设置位置不起作用。

我在全球声明:

private MapboxMap mapboxMap2;
private MarkerViewOptions marker_inter;

然后在我的 OnMapReadyCallback() 中,我将 MapboxMap 保存为:

 public void onMapReady(MapboxMap mapboxMap)
        {
            mapboxMap2 = mapboxMap;

所以我以后可以使用它。

同样在 OnMapReadyCallback 我使用以下标记放置标记:

                marker_inter = new MarkerViewOptions()
                        .position(new LatLng(the_lagps_inter, the_logps_inter))
                        .title("Intervention")
                        .snippet("Desc inter")
                        .icon(iconeInter);
                markerView = mapboxMap.addMarker(marker_inter);

标记设置正确。然后在 onMapClick(@NonNull LatLng point) 我检索点击的坐标(这是正确的)。但:

1)如果我尝试使用以下方法删除标记:

  mapboxMap2.removeMarker(marker_inter);

我在 MapboxMap 中得到“ removeMarker (com.mapbox.mapboxsdk.annotations.Marker) 不能应用于 (com.mapbox.mapboxsdk.annotations.MarkerViewOptions)

2)如果我尝试使用以下方法设置新位置:

    marker_inter.setPosition(new LatLng(the_lagps_inter, the_logps_inter));

我得到:“无法解析方法'setPosition(com.mapbox.maboxsdk.geometry.LatLng)

注意:我导入 com.mapbox.mapboxsdk.geometry.LatLng;

似乎 removeMarker 不适用于 MarkerViewOptions 并且 setPosition 在 geometry.LatLng 中不再存在?

任何想法?

4

1 回答 1

1

您需要使用MarkerViewnot删除标记MarkerViewOptions。将您的代码更改为:

private MarkerView marker_inter;

...

marker_inter = mapboxMap.addMarker(new MarkerViewOptions()
    .position(new LatLng(the_lagps_inter, the_logps_inter))
    .title("Intervention")
    .snippet("Desc inter")
    .icon(iconeInter));

然后尝试删除 MarkerView 并设置它的位置。

于 2016-11-10T21:19:37.607 回答