我有一個標記與信息窗口。我怎樣才能從地圖上移除那個綠色的手指?看看這個:如何刪除標記圖標
我的代碼:
Marker startMarker = new Marker(mapView);
startMarker.setPosition(gPt);
startMarker.setIcon(null);//doesn't help
startMarker.setAnchor(Marker.ANCHOR_CENTER, 1.0f);
InfoWindow infoWindow = new MyInfoWindow(R.layout.bonuspack_bubble,
mapView, company);
startMarker.setInfoWindow(infoWindow);
startMarker.setTitle(company.getName());
startMarker.showInfoWindow();
mapView.getOverlays().add(startMarker);
替換透明一個 –
標記圖標參閱[此](http://stackoverflow.com/a/20031319/1479511) – NarendraJi