2016-03-22 21 views
-1

Googleマップで小さな男を隠すのに、どのGoogleマップオプションを使用しますか?ここでどのように私は小さなマップをGoogleマップで取り除くことができますか?

enter image description here

私マップオプションは

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;

答えて

3

テー小さな男がPegman名前が付けられ、制御がstreetViewControl

  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     
      }; 
ですです
関連する問題