使用JavaScript API v3在地图上将有效的Google街景区域显示为图层,可以通过以下步骤实现:
以下是一个示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Google街景图层示例</title>
<style>
#map {
height: 100%;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"></script>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: 40.7128, lng: -74.0060},
zoom: 12
});
var panorama = new google.maps.StreetViewPanorama(
document.getElementById('map'),
{
position: {lat: 40.7128, lng: -74.0060},
pov: {heading: 34, pitch: 10},
visible: true
});
}
</script>
</body>
</html>
在上面的代码中,需要将YOUR_API_KEY
替换为你的Google Maps API密钥。
通过以上步骤,你可以在地图上将有效的Google街景区域显示为图层。
领取专属 10元无门槛券
手把手带您无忧上云