我正在添加折线选项,就像在Google开发人员的网站中一样。

PolylineOptions rectOptions = new PolylineOptions()
        .add(new LatLng(37.35, -122.0))
        .add(new LatLng(37.45, -122.0))  // North of the previous point, but at the same longitude
        .add(new LatLng(37.45, -122.2))  // Same latitude, and 30km to the west
        .add(new LatLng(37.35, -122.2))  // Same longitude, and 16km to the south
        .add(new LatLng(37.35, -122.0)); // Closes the polyline.

// Get back the mutable Polyline
Polyline polyline = myMap.addPolyline(rectOptions);

我要删除它。但没有rectOptions.remove()我确实按照Google Maps Android API v2, how to remove Polylines from the map?中的说明从我的SDK更新了Google Play服务
但我仍然没有。从SDK Manager更新后,我还应该做更多的事情吗?我真的需要删除它,并且不要使其不可见以节省内存,因为我会多次显示很多点的路径。

最佳答案

要删除Polyline,请使用polyline.remove();

关于android - 删除折线Google Map v2 android的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15155822/

10-09 09:54