Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
GEvent.addListener(marker, "click", function() {

 panoramaOptions = { addressControl: false,navigationControl: false };
  panorama = new GStreetviewPanorama(smallNode,panoramaOptions);
 GEvent.addListener(panorama, 'error', function(errorCode) {
         if (errorCode == 600) {
           smallNode.innerHTML = 'No Streetview data was found.';
         }
       }); 
  panorama.setLocationAndPOV(marker.getLatLng());
marker.openInfoWindowTabs(tabs);

 });  

Hi - I am displaying a Street View from a lat long value, but the address displayed in the Panorama (street View) is slightly off from the address I have stored in the database. For example, the overlay will display "91 xxx Street" in the top right corner of the Street View map, when I have "93 xxx Street" as my marker which was geocoded.

I would like to remove the address overlay and user photos overlay from this map, using the above code as a reference - could you please assist in removing the address and photo overlays?

Any help appreciated.

share|improve this question

1 Answer

You can hide the user photos, but not the address.

The properties available for GStreetViewPanoramaOptions are available in the reference.

In particular, to remove user photos:

var panoramaOptions = { features: { userPhotos: false } };

addressControls and navigationControls are not supported options.

share|improve this answer
By the way, you should consider migrating to v3. It has support for hiding the address control. – Dave Feb 17 '12 at 1:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.