Google Maps removes the default man icon

advertisements

i am using google maps with my project as you can see here ( Demo )

in left top you can see man icon and zoom i want to remove man icon and set zoom left-top what should i do? i am using this library js library and you can see other library in (view) source demo link [3]


This should remove the street view (the man) and the pan control:

var mapOptions = {
  center: mapCenter,
  zoom: 10,
  panControl: false,
  streetViewControl: false,
  mapTypeId: google.maps.MapTypeId.ROADMAP
};

Example of using Google Maps options:

var map;
function initialize() {
  var mapOptions = {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644),
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById('map-canvas'),
      mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);