I am using the JS API to display my map.
Here is the code:
<script type="text/javascript">
function initialize() {
var _lat = 10;
var _long = 200;
var myLatlng = new google.maps.LatLng(_lat, _long);
var myOptions = {
center: myLatlng,
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
var image = 'target.png';
var beachMarker = new google.maps.Marker({
position: myLatlng,
map: map,
icon: image
});
beachMarker.setMap(map);
}
</script>
Now i want to remove few things from the map.
- Remove the zoom controls + user should not be able to zoom using
mouse or anything - User should not be able to move around the map using mouse. It
should stay like a static image - Remove the MAP|SATELLITE option from map.
How do i achieve this.
This option is used for disable zoom on mouse.
This option is used for disable zoom by scale.
This option is used for disabling drag.
This option will hide map type.
Put them as following: