You are here

function location_load_geocoder in Location 6.3

Same name and namespace in other branches
  1. 5.3 location.inc \location_load_geocoder()
  2. 7.5 location.inc \location_load_geocoder()
  3. 7.3 location.inc \location_load_geocoder()
  4. 7.4 location.inc \location_load_geocoder()

Load a general geocoding service.

3 calls to location_load_geocoder()
location_geocoding_options_form in ./location.admin.inc
location_geocoding_parameters_form in ./location.module
location_latlon_exact in ./location.inc
Currently, this is not a priority until there is an implementable use for exact longitude, latitude coordinates for an location. The idea is that this call will eventually retrieve information through a web-service. Whereas location_latlon_rough()…

File

./location.inc, line 574

Code

function location_load_geocoder($geocoder) {
  include_once drupal_get_path('module', 'location') . '/geocoding/' . $geocoder . '.inc';
}