In V3, when you define your parameters, you have the option to disable / enable any user interface functions:
function initialize() { var mapOptions = { zoom: 4, center: new google.maps.LatLng(-33, 151), //panControl: false, zoomControl: false, scaleControl: true, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); }
Erik johnson
source share