Index: trunk/extensions/Maps/includes/services/GoogleMaps/GoogleMaps.php |
— | — | @@ -33,9 +33,10 @@ |
34 | 34 | function efMapsInitGoogleMaps() { |
35 | 35 | global $wgAutoloadClasses; |
36 | 36 | |
37 | | - $wgAutoloadClasses['MapsGoogleMaps'] = dirname( __FILE__ ) . '/Maps_GoogleMaps.php'; |
38 | | - $wgAutoloadClasses['MapsGoogleMapsDispMap'] = dirname( __FILE__ ) . '/Maps_GoogleMapsDispMap.php'; |
39 | | - $wgAutoloadClasses['MapsGoogleMapsDispPoint'] = dirname( __FILE__ ) . '/Maps_GoogleMapsDispPoint.php'; |
| 37 | + $wgAutoloadClasses['MapsGoogleMaps'] = dirname( __FILE__ ) . '/Maps_GoogleMaps.php'; |
| 38 | + $wgAutoloadClasses['CriterionGoogleOverlay'] = dirname( __FILE__ ) . '/CriterionGoogleOverlay.php'; |
| 39 | + $wgAutoloadClasses['MapsGoogleMapsDispMap'] = dirname( __FILE__ ) . '/Maps_GoogleMapsDispMap.php'; |
| 40 | + $wgAutoloadClasses['MapsGoogleMapsDispPoint'] = dirname( __FILE__ ) . '/Maps_GoogleMapsDispPoint.php'; |
40 | 41 | |
41 | 42 | MapsMappingServices::registerService( 'googlemaps2', 'MapsGoogleMaps' ); |
42 | 43 | $googleMaps = MapsMappingServices::getServiceInstance( 'googlemaps2' ); |
Index: trunk/extensions/Maps/includes/parserHooks/Maps_Geocode.php |
— | — | @@ -126,7 +126,7 @@ |
127 | 127 | * @return array |
128 | 128 | */ |
129 | 129 | protected function getDefaultParameters() { |
130 | | - return array( 'location', 'service', 'mappingservice' ); |
| 130 | + return array( 'location', 'geoservice', 'mappingservice' ); |
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |