20 Haziran 2016 Pazartesi

Google-Maps Marker Sınıfı

remove metodu
Marker eklendikten sonra saklanmalıdır.
Marker marker= map.addMarker(new MarkerOptions().position(latLng).title("Title"));
Daha sonra şöyle silinir.
markerName.remove();

showInfoWindow metodu
Açıklamsı şöyle
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
Yani şu kod ilk pencereyi kapatır ve yenisini açar.
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