Hi there,
For 3 Hanover Square, New York, NY address street view shows the imagery from inside of the business for the address and latitude longitude.
Following is the Latitude and Longitude information about the place.
Lat: 40.7047309875488
Long: -74.0094909667969
Please help me to get the options to disable the street view showing information of business.
Here is the sample code.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Embedded StreetView</title>
<link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet">
<script src="
https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
function initialize() {
var hanover= new google.maps.LatLng(40.7047309875488, -74.0094909667969);
var panoramaOptions = {
position:hanover,
pov: {
heading: 165,
pitch:0,
zoom:1
}
};
var myPano = new google.maps.StreetViewPanorama(document.getElementById('pano'), panoramaOptions);
myPano.setVisible(true);
}
</script>
</head>
<body onload="initialize()">
<div id="pano" style="width: 425px; height: 240px"></div>
</body>
</html>
Please help me.
Thanks and regards,
Swapnil Patil