我对在我的网站中使用谷歌地图的概念相当陌生。我已经得到这个脚本来加载我网页的 div 中的特定位置。但是,所需的位置不会加载到我的页面中。
说,我想BIT Main Bldg Patna, Bihar, India 12 m E
在打开页面时在 div 中加载位置。但是,结果并不准确,我们需要再放大几层。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps Geocoding Demo</title>
<script src="http://maps.google.com/maps/api/js?sensor=false"
type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 400px; height: 300px;"></div>
<script type="text/javascript">
var address = 'BIT Main Bldg Patna, Bihar, India 12 m E';
var map = new google.maps.Map(document.getElementById('map'), {
mapTypeId: google.maps.MapTypeId.TERRAIN,
zoom: 8
});
var geocoder = new google.maps.Geocoder();
geocoder.geocode({
'address': address
},
function(results, status) {
if(status == google.maps.GeocoderStatus.OK) {
new google.maps.Marker({
position: results[0].geometry.location,
map: map
});
map.setCenter(results[0].geometry.location);
}
else {
// Google couldn't geocode this request. Handle appropriately.
}
});
</script>
</body>
</html>
BIT Main Bldg Patna, Bihar, India 12 m E
通过在此页面的输出文本框中输入,您可以看到确切的期望结果。这里有什么错误?