correct Google API key handling

This commit is contained in:
bfabiszewski 2013-06-21 12:44:57 +02:00
parent 8c9a527fdf
commit 458f1449cb
2 changed files with 2 additions and 1 deletions

View File

@ -105,6 +105,7 @@ print
var lang_newinterval = "'.$lang_newinterval.'";
var units = "'.$units.'";
var mapapi = "'.$mapapi.'";
var gkey = '.(isset($gkey)?'"'.$gkey.'"':'null').';
</script>
<script type="text/javascript" src="main.js"></script>
';

View File

@ -287,7 +287,7 @@ function loadMapAPI(api) {
var url = new Array();
if (api=='gmaps') {
url.push('api_gmaps.js');
url.push('https://maps.googleapis.com/maps/api/js?sensor=false&callback=init');
url.push('https://maps.googleapis.com/maps/api/js?'+((gkey!==null)?('key='+gkey+'&'):'')+'sensor=false&callback=init');
}
else {
url.push('api_openlayers.js');