From ea6cce3937970cd5c22f04b823a6def0b1b78989 Mon Sep 17 00:00:00 2001 From: Silvio Date: Tue, 26 Feb 2013 19:26:35 -0300 Subject: Initial gmap3 implementation --- gmap_arcgis.module | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'gmap_arcgis.module') diff --git a/gmap_arcgis.module b/gmap_arcgis.module index 684029d..f69b0e2 100644 --- a/gmap_arcgis.module +++ b/gmap_arcgis.module @@ -26,6 +26,8 @@ function gmap_arcgis_gmap($op, &$map) { * a given map instance. */ if (isset($map['arcgis'])) { + global $base_url; + /** * Make sure that shapes js code are loaded. * @@ -43,12 +45,12 @@ function gmap_arcgis_gmap($op, &$map) { * The order to load the following js code is important. */ // Add Google js API - $key = variable_get('googlemap_api_key', ''); + $key = variable_get('gmap_api_key', ''); $script = ''); + drupal_set_html_head($script . 'src="http://www.google.com/jsapi?key=' . $key . '&sensor=true&language=pt-BR">'); // Add ArcGIS js API - drupal_set_html_head($script . 'src="http://serverapi.arcgisonline.com/jsapi/gmaps/?v=1.6">'); + drupal_set_html_head($script . 'src="'. $base_url .'/sites/all/libraries/google-maps-utility-library-v3/arcgislink/src/arcgislink_compiled.js">'); // Setup Map Id drupal_add_js(array('gmap_arcgis' => array('id' => $map['id'])), 'setting'); -- cgit v1.2.3