I am currently using the Google Street View Panorama embed and I want to get the POV (more specifically heading) for a particular address.
Google does this via maps.
Can't tell if you want to get or set the POV
to set follow the instructions here: http://code.google.com/apis/maps/documentation/javascript/services.html#StreetViewPanoramas
var panoramaOptions = {
position: fenway,
pov: {
heading: 34,
pitch: 10,
zoom: 1
}
};
to get:
alert( panoramaOptions.pov.heading );