--
You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group.
To post to this group, send email to google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
Weird! Hiding the street view control is definitely working for me.
For example, try running the following code:
function initialize() {
var mapDiv = document.getElementById('map-canvas');
var map = new google.maps.Map(mapDiv, {
center: new google.maps.LatLng(37.4419, -122.1419),
zoom: 13,
streetViewControl: false,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
}
using the Google Code Playground:
http://code.google.com/apis/ajax/playground/#custom_controls_v3
Success?