具有多个标记的onMakerDragEnd

时间:2019-02-28 13:00:14

标签: android

我的地图上有两个标记。如果我拖拽它们,我想更改要拖动的标记的标题。因此,我要根据标记采取不同的操作。我该如何实现?

我尝试过的代码:

  public void onMarkerDragEnd(Marker marker) {

    LatLng position = marker.getPosition();


    switch (marker.getId()) {

        case m0:
            AbholLocation = position;

        case m1:
            ZielLocation = position;

    }
    }

0 个答案:

没有答案