google map api之查询坐标

根據用戶輸入內容查詢座標:
function addressGps() {

	var myGeocoder=new google.maps.Geocoder();

	var address=document.getElementById('address').value;
	if(address==''){
		alert("請輸入您要查詢的地點名稱");
		return;
	}
	
	myGeocoder.geocode({'address':address}, function (results, status ){

							if(status == google.maps.GeocoderStatus.OK){

								//移動地圖中心點

								myMap.setCenter(results[0].geometry.location);

								var center = results[0].geometry.location;

								var newMaker = new google.maps.Marker({

									map: myMap,

									position: center

									 });

							}else{

								alert('這個地址 google map 無資料!');

							}

						});

	}
 

你可能感兴趣的:(google map api之查询坐标)