Index: trunk/extensions/Maps/Maps.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | echo '<b>Warning:</b> You need to have <a href="http://www.mediawiki.org/wiki/Extension:Validator">Validator</a> installed in order to use <a href="http://www.mediawiki.org/wiki/Extension:Maps">Maps</a>.'; |
35 | 35 | } |
36 | 36 | else { |
37 | | - define( 'Maps_VERSION', '0.6 a6' ); |
| 37 | + define( 'Maps_VERSION', '0.6 a7' ); |
38 | 38 | |
39 | 39 | // The different coordinate notations. |
40 | 40 | define( 'Maps_COORDS_FLOAT', 'float' ); |
— | — | @@ -105,6 +105,9 @@ |
106 | 106 | |
107 | 107 | MapsMapper::initializeMainParams(); |
108 | 108 | |
| 109 | + // wfRunHooks( 'MappingFeatureLoad'); |
| 110 | + // wfRunHooks( 'MappingServiceLoad'); |
| 111 | + |
109 | 112 | // Loop through the available mapping features, load and initialize them. |
110 | 113 | foreach ( $egMapsAvailableFeatures as $key => $values ) { |
111 | 114 | // Load and optionally initizlize feature. |
Index: trunk/extensions/Maps/Maps_Settings.php |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | include_once $egMapsDir . 'GoogleMaps3/Maps_GoogleMaps3.php'; // Google Maps v3 |
70 | 70 | include_once $egMapsDir . 'OpenLayers/Maps_OpenLayers.php'; // OpenLayers |
71 | 71 | include_once $egMapsDir . 'YahooMaps/Maps_YahooMaps.php'; // Yahoo! Maps |
72 | | -include_once $egMapsDir . 'OpenStreetMap/Maps_OSM.php'; // OpenLayers optimized for OSM |
| 72 | +// include_once $egMapsDir . 'OpenStreetMap/Maps_OSM.php'; // OpenLayers optimized for OSM |
73 | 73 | |
74 | 74 | # Array of String. Array containing all the mapping services that will be made available to the user. |
75 | 75 | # Currently Maps provides the following services: googlemaps, yahoomaps, openlayers |