I'm experiencing the same bug and I've seen nothing online about how to fix it yet, but I was able to come up with a temporary hack. By changing the zoom level of the panorama each time the visibility property is set to true, the panorama will remain visible (at least in Firefox). Ex: var pov = panorama.getPov(); var cur_zoom= pov.zoom; if(cur_zoom > 0){ pov.zoom = 0; }else{ pov.zoom = pov.zoom + 1; } panorama.setPov(pov);
panorama.setVisible(true); On Jul 24, 11:08 pm, William <william.g...@gmail.com> wrote: > I've taken the Street View Events example and modified it to display > the Visible property, with a "Toggle Visibility" link to test it, and > it seems to confirm the bug:http://www.william-map.com/20100725/2/sv.htm > > original example > code:http://code.google.com/apis/maps/documentation/javascript/examples/st... > > ... -- 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-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.