Index: trunk/extensions/Maps/includes/Maps_Mapper.php |
— | — | @@ -85,9 +85,10 @@ |
86 | 86 | */ |
87 | 87 | public static function formatLocation( &$location, $name, array $parameters ) { |
88 | 88 | if ( self::geocoderIsAvailable() ) { |
89 | | - $geoService = array_key_exists( 'geoservice', $parameters ) ? $parameters['geoservice']['value'] : ''; |
90 | | - $mappingService = array_key_exists( 'mappingservice', $parameters ) ? $parameters['mappingservice']['value'] : false; |
91 | | - $location = MapsGeocoders::attemptToGeocodeToString( $location, $geoService, $mappingService ); |
| 89 | + // TODO |
| 90 | + //$geoService = array_key_exists( 'geoservice', $parameters ) ? $parameters['geoservice']['value'] : ''; |
| 91 | + //$mappingService = array_key_exists( 'mappingservice', $parameters ) ? $parameters['mappingservice']['value'] : false; |
| 92 | + $location = MapsGeocoders::attemptToGeocodeToString( $location/*, $geoService, $mappingService*/ ); |
92 | 93 | } else { |
93 | 94 | $location = MapsCoordinateParser::parseAndFormat( $location ); |
94 | 95 | } |