Hmmm... Are you sure?

Hmmm...

Google Street View Map - simple code...
This view is of Buckingham Palace in London - looking at the Victoria Memorial from the Mall.
 



<style type="text/css">html, body, #map_canvas { height: 100%; margin: 0; padding: 0;}</style>
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=mygooglemapkey"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

function initialize() {
var hmmmmap = new google.maps.LatLng(51.502145,-0.139861);
var mapOptions = {
center: hmmmmap,
zoom: 14
};
var panoramaOptions = {
position: hmmmmap,
pov: {
heading: 237,
pitch: 10
}
};
var panorama = new google.maps.StreetViewPanorama(document.getElementById('pano'),panoramaOptions);
}
</script>

Hmmm...

site map