remove metodu
Marker eklendikten sonra saklanmalıdır.
markerName.remove();
showInfoWindow metodu
Açıklamsı şöyle
Marker eklendikten sonra saklanmalıdır.
Marker marker= map.addMarker(new MarkerOptions().position(latLng).title("Title"));
Daha sonra şöyle silinir.markerName.remove();
Açıklamsı şöyle
Yani şu kod ilk pencereyi kapatır ve yenisini açar.An info window allows you to display information to the user when they tap on a marker. Only one info window is displayed at a time. If a user clicks on another marker, the current info window will be hidden and the new info window will be displayed
MarkerOptions marker = new MarkerOptions().position(...).title("...");
Marker m1 = googleMap.addMarker(marker);
m1.showInfoWindow();
MarkerOptions marker2 = new MarkerOptions().position(...).title("...");
Marker m2=googleMap.addMarker(marker2);
m2.showInfoWindow();
Hiç yorum yok:
Yorum Gönder