JavaScript Google Maps API V3 Javascript基本示例

Posted

tags:

篇首语:本文由小常识网(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基本示例的主要内容,如果未能解决你的问题,请参考以下文章

在 typescript/javascript 的 google.maps.Geocoder().geocode() 上使用全局变量

JavaScript Google Maps API

Google Maps JavaScript API 警告:NoApiKeys

Google Maps Javascript API、DirectionsService、国家列表

Google Maps Javascript API 移动性能问题

具有自动完成功能的 Google Maps JavaScript API