Ejemplo n.º 1
0
 /** Do not use this method. Used internally by the SDK. */
 public void hideInfoWindow() {
   if (infoWindow != null) {
     infoWindow.close();
   }
   infoWindowShown = false;
 }
Ejemplo n.º 2
0
 private InfoWindow showInfoWindow(InfoWindow iw, MapView mapView) {
   iw.open(mapView, this, getPosition(), 0, topOffsetPixels);
   infoWindowShown = true;
   return iw;
 }