篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript Google Maps API V3 Javascript基本示例相关的知识,希望对你有一定的参考价值。
window.onload = function(){
var geocoder = new google.maps.Geocoder();
geocoder.geocode({'address':'5510 University Way NE Seattle, WA 98105'},function(result,status){
if(status==google.maps.GeocoderStatus.OK){
var map = new google.maps.Map(document.getElementById("the_map"),{
'center': result[0].geometry.location,
'zoom': 14,
'streetViewControl': false,
'mapTypeId': google.maps.MapTypeId.TERRAIN,
'noClear':true,
});
new google.maps.Marker({
'map': map,
'position': result[0].geometry.location,
});
}else{
alert('Address not found!');
}
});
}
以上是关于JavaScript Google Maps API V3 Javascript基本示例的主要内容,如果未能解决你的问题,请参考以下文章