On 3 November 2010 15:29, Paul <[email protected]> wrote: > > So what I would like to do is turn off the address overlay (and user > photos while I am at it) when I display the Street view panorama.
Turn off the user photos in your panorama options: http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GStreetviewPanoramaOptions.features panoramaOptions = { addressControl: false,navigationControl: false, features: { userPhotos:false } }; If by "address overlay" you mean the pale box which includes the words "Address is approximate", then that's not possible. There's no option to do that, and as it's built into the Flash applet which is Streetview, there's no CSS hack either. It would be rather nice to be able to turn it off, because in a small panorama it can overlap with the photos (as well as being wrong). But there doesn't appear to be a request for that and as v2 is deprecated it's unlikely to be implemented. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
