如何从网络配置文件中阅读谷歌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);
}
});
}
答案 0 :(得分:2)
我知道你可能会担心人们会偷窃&#34;你的钥匙 -
然而,你需要在客户端JS中使用它,无论你多么努力地模糊或隐藏它,它在某些时候都会成为客户端,所以真正想要掌握它的人会这样做。
解决方案: 您可以设置允许的引荐来源,以便其他人无法使用您的密钥。
https://developers.google.com/maps/documentation/business/places/auth#limiting_referrers