How to find panoID on new google maps?
The pano is no longer a 22 character string. The identifier now consists of multiple lines separated by a slash. For example:
The panorama id for the above is between the symbols! 1s and! 2e:
-wBhdou4p2Mk%2FVoC0geL2n8I%2FAAAAAAAAZ80%2FeRVCXmFDXBg
And url decoding:
-wBhdou4p2Mk/VoC0geL2n8I/AAAAAAAAZ80/eRVCXmFDXBg
There is currently a known bug described here https://code.google.com/p/gmaps-api-issues/issues/detail?id=7452#c51 . This error prevents new panels from being introduced. Google says they are currently working on the problem and have supplanted a temporary method to enable the use of the new rendering method. Apparently this is not ready for prime time yet, so it is only available via an undocumented option:
google.maps.streetViewViewer = 'photosphere';
Note. ... For this to work for us, we needed to add F: to the front of the panorama id (as per comment 80 https://code.google.com/p/gmaps-api-issues/issues/detail?id=7452#c80 ).
source to share