2016-03-22 1 views
-1

Welche Google Map-Option wird verwendet, um den kleinen Mann in einer Google Map zu verstecken?Wie kann ich den kleinen Mann in einer Google Map loswerden?

enter image description here

Hier ist meine Karte Optionen sind

mapOptions.zoom = 18; 
 
mapOptions.zoomControl = true; 
 
mapOptions.center = new window.google.maps.LatLng(mapCoordinates.latitude, mapCoordinates.longitude); 
 
mapOptions.disableDefaultUI = false; 
 
mapOptions.draggable = true; 
 
mapOptions.styles = ""; 
 
mapOptions.disableDoubleClickZoom = true; 
 
mapOptions.mapTypeControl = false;

Antwort

3

Teh Männlein heißt Pegman und die Steuerung ist street

  var mapOptions = { 
       center: new google.maps.LatLng(initLat, initLng), 
       zoom: initZoom, 
       streetViewControl: false, //don't show the pegman 
       mapTypeId: google.maps.MapTypeId.SATELLITE, 
       mapTypeControl:false, 
       scaleControl: true, 
       tilt: 0, 
       styles: mlwStyles     
      }; 
Verwandte Themen