Index: trunk/extensions/Maps/Services/GoogleMaps3/Maps_GoogleMaps3DispPoint.php |
— | — | @@ -43,7 +43,7 @@ |
44 | 44 | addOnloadHook( |
45 | 45 | function() { |
46 | 46 | initGMap3( |
47 | | - '$mapName', |
| 47 | + "$mapName", |
48 | 48 | { |
49 | 49 | zoom: $this->zoom, |
50 | 50 | lat: $this->centreLat, |
Index: trunk/extensions/Maps/Services/GoogleMaps3/Maps_GoogleMaps3DispMap.php |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | addOnloadHook( |
44 | 44 | function() { |
45 | 45 | initGMap3( |
46 | | - '$mapName', |
| 46 | + "$mapName", |
47 | 47 | { |
48 | 48 | zoom: $this->zoom, |
49 | 49 | lat: $this->centreLat, |
Index: trunk/extensions/Maps/Services/YahooMaps/Maps_YahooMapsDispPoint.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | addOnloadHook( |
42 | 42 | function() { |
43 | 43 | initializeYahooMap( |
44 | | - '$mapName', |
| 44 | + "$mapName", |
45 | 45 | $this->centreLat, |
46 | 46 | $this->centreLon, |
47 | 47 | $this->zoom, |
Index: trunk/extensions/Maps/Services/YahooMaps/Maps_YahooMapsDispMap.php |
— | — | @@ -35,7 +35,7 @@ |
36 | 36 | addOnloadHook( |
37 | 37 | function() { |
38 | 38 | initializeYahooMap( |
39 | | - '$mapName', |
| 39 | + "$mapName", |
40 | 40 | $this->centreLat, |
41 | 41 | $this->centreLon, |
42 | 42 | $this->zoom, |
Index: trunk/extensions/Maps/Services/OpenLayers/Maps_OpenLayersDispPoint.php |
— | — | @@ -46,14 +46,14 @@ |
47 | 47 | addOnloadHook( |
48 | 48 | function() { |
49 | 49 | initOpenLayer( |
50 | | - '$mapName', |
| 50 | + "$mapName", |
51 | 51 | $this->centreLon, |
52 | 52 | $this->centreLat, |
53 | 53 | $this->zoom, |
54 | 54 | [$layerItems], |
55 | 55 | [$this->controls], |
56 | 56 | $this->markerJs, |
57 | | - '$langCode' |
| 57 | + "$langCode" |
58 | 58 | ); |
59 | 59 | } |
60 | 60 | ); |
Index: trunk/extensions/Maps/Services/OpenLayers/Maps_OpenLayersDispMap.php |
— | — | @@ -41,14 +41,14 @@ |
42 | 42 | addOnloadHook( |
43 | 43 | function() { |
44 | 44 | initOpenLayer( |
45 | | - '$mapName', |
| 45 | + "$mapName", |
46 | 46 | $this->centreLon, |
47 | 47 | $this->centreLat, |
48 | 48 | $this->zoom, |
49 | 49 | [$layerItems], |
50 | 50 | [$this->controls], |
51 | 51 | [], |
52 | | - '$langCode' |
| 52 | + "$langCode" |
53 | 53 | ); |
54 | 54 | } |
55 | 55 | ); |
Index: trunk/extensions/Maps/Services/GoogleMaps/Maps_GoogleMapsDispMap.php |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | Html::inlineScript( <<<EOT |
59 | 59 | addOnloadHook( |
60 | 60 | function() { |
61 | | - initializeGoogleMap('$mapName', |
| 61 | + initializeGoogleMap("$mapName", |
62 | 62 | { |
63 | 63 | lat: $this->centreLat, |
64 | 64 | lon: $this->centreLon, |
Index: trunk/extensions/Maps/Services/GoogleMaps/Maps_GoogleMapsDispPoint.php |
— | — | @@ -58,7 +58,7 @@ |
59 | 59 | <<<EOT |
60 | 60 | addOnloadHook( |
61 | 61 | function() { |
62 | | - initializeGoogleMap('$mapName', |
| 62 | + initializeGoogleMap("$mapName", |
63 | 63 | { |
64 | 64 | lat: $this->centreLat, |
65 | 65 | lon: $this->centreLon, |