diff options
| -rw-r--r-- | httemplate/search/elements/gmap.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/search/elements/gmap.html b/httemplate/search/elements/gmap.html index 47db1507d..399ed8353 100644 --- a/httemplate/search/elements/gmap.html +++ b/httemplate/search/elements/gmap.html @@ -46,7 +46,9 @@ my $tree = { features => \@features }; +my $apikey = FS::Conf->new->config('google_maps_api_key'); </%init> + <div id="map_canvas"></div> <style type="text/css"> @@ -57,7 +59,7 @@ body { height: 100%; margin: 0px; padding: 0px } #map_canvas { height: 100%; } </style> -<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3"> +<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3<% $apikey ? "&key=$apikey" : '' %>"> </script> <script type="text/javascript"> |
