2014-10-09 64 views
0

如何從網頁配置文件中讀取谷歌API密鑰並將其附加到谷歌API參考。如何從網頁配置文件獲取谷歌地圖api密鑰

我在外部文件中有jquery函數,我在asp.net頁面中添加了對該文件的引用。我認爲在頁面參考中添加API密鑰並不是一個好習慣。

aspx頁面

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> 
<script src="../scripts/GeoCode.js" type="text/javascript"></script> 

外部JS文件

function GetGeoCode() { 
var txtLat = $('[id$=txtLat]'); 
var txtLng = $('[id$=txtLng]'); 

var geocoder = new google.maps.Geocoder(); 
var address = "my address"; 

geocoder.geocode({ 'address': address }, function (results, status) { 

    if (status == google.maps.GeocoderStatus.OK) { 
     var latitude = results[0].geometry.location.lat(); 
     var longitude = results[0].geometry.location.lng(); 
     txtLat.val(latitude); 
     txtLng.val(longitude); 

    } 
}); 

}

回答