我想使用谷歌地圖JavaScript API來映射基於此示例的地址。JavaScript谷歌地圖geocoder初始化
https://google-developers.appspot.com/maps/documentation/javascript/examples/geocoding-simple
文檔建議客戶方JavaScript方式是最好的方式來處理的請求配額。到現在爲止還挺好。我的問題是從這個例子轉到我的具體情況。我的地址已經在數據庫中,所以我不需要用戶輸入一個。另外我不希望地圖加載到頁面。相反,我希望用戶點擊鏈接時加載地址的地圖。
我有一個腳本工作,使用initialize()加載在一個div中的地圖。但我的問題是初始化與地理編碼工作。示例中的地理編碼取決於使用bodyonload初始化加載,這是我不想要的。
這是代碼。希望任何建議:
的JavaScript
var map;
var geocoder;
function codeAddress() {
var address = document.getElementById('address').value;
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
position: results[0].geometry.location
});
} else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
}
function initialize() {
geocoder = new google.maps.Geocoder();
var latlng = new google.maps.LatLng(40.7562008,-73.9903784);
var myOptions = {
zoom: 18,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
HTML
<input id="address" type="hidden" value="Palo Alto CA">
<a href="javascript:void(0)" onclick="initialize()">View map without geocoding</a>
<div id="map_canvas" style="width:300px; height:300px;"></div>
<a href="javascript:void(0)" onclick="codeAddress()">View map of geocoded address</a>
我已經獲得了codeaddress的鏈接,通過在代碼地址函數中包含初始化函數來拉起地圖。但是,它將拉動座標系中設置的座標var latlng = new google.maps.LatLng(40.7562008,-73.9903784)(它旨在用佔位符加載地圖,直到您在google示例中鍵入地址; What我真的很想插入來自codeAddress的結果latlong,但我看不到如何做到這一點。我嘗試瞭解var latlong線但得到一個錯誤。 – user1260310