Index: trunk/extensions/Maps/Services/GoogleMaps3/GoogleMap3Functions.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | /** |
3 | | - * Javascript functions for Google Maps v3 functionallity in Maps. |
| 3 | + * Javascript functions for Google Maps v3 functionality in Maps. |
4 | 4 | * |
5 | 5 | * @file GoogleMap3Functions.js |
6 | 6 | * @ingroup MapsGoogleMaps3 |
— | — | @@ -38,4 +38,4 @@ |
39 | 39 | |
40 | 40 | function getGMaps3MarkerData(lat, lon, title, label, icon) { |
41 | 41 | return {position: new google.maps.LatLng(lat, lon), title: title, label: label, icon: icon}; |
42 | | -} |
\ No newline at end of file |
| 42 | +} |
Index: trunk/extensions/Maps/Services/YahooMaps/YahooMapFunctions.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | /** |
3 | | - * Javascript functions for Yahoo! Maps functionallity in Maps and it's extensions |
| 3 | + * Javascript functions for Yahoo! Maps functionality in Maps and its extensions |
4 | 4 | * |
5 | 5 | * @file YahooMapFunctions.js |
6 | 6 | * @ingroup MapsYahooMaps |
— | — | @@ -113,4 +113,4 @@ |
114 | 114 | |
115 | 115 | function getYMarkerData(lat, lon, title, label, icon) { |
116 | 116 | return {point: new YGeoPoint(lat, lon), title: title, label: label, icon: icon}; |
117 | | - } |
\ No newline at end of file |
| 117 | + } |
Index: trunk/extensions/Maps/Services/OpenLayers/OpenLayerFunctions.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | /** |
3 | | - * Javascript functions for Open Layers functionallity in Maps and it's extensions |
| 3 | + * Javascript functions for Open Layers functionality in Maps and its extensions |
4 | 4 | * |
5 | 5 | * @file OpenLayerFunctions.js |
6 | 6 | * @ingroup MapsOpenLayers |
Index: trunk/extensions/Maps/Services/GoogleMaps/GoogleMapFunctions.js |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | /** |
3 | | - * Javascript functions for Google Maps functionallity in Maps. |
| 3 | + * Javascript functions for Google Maps functionality in Maps. |
4 | 4 | * |
5 | 5 | * @file GoogleMapFunctions.js |
6 | 6 | * @ingroup MapsGoogleMaps |
Index: trunk/extensions/Maps/Features/DisplayPoint/Maps_BasePointMap.php |
— | — | @@ -211,7 +211,7 @@ |
212 | 212 | private function setCentre() { |
213 | 213 | if ( empty( $this->centre ) ) { |
214 | 214 | if ( count( $this->markerData ) == 1 ) { |
215 | | - // If centre is not set and there is exactelly one marker, use it's coordinates. |
| 215 | + // If centre is not set and there is exactly one marker, use its coordinates. |
216 | 216 | $this->centreLat = Xml::escapeJsString( $this->markerData[0]['lat'] ); |
217 | 217 | $this->centreLon = Xml::escapeJsString( $this->markerData[0]['lon'] ); |
218 | 218 | } |