12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- // Belgium
- function location_province_list_be() {
- return array(
- 'VAN' => "Antwerpen",
- 'VBR' => "Vlaams Brabant",
- 'VLI' => "Limburg",
- 'VOV' => "Oost-Vlaanderen",
- 'VWV' => "West-Vlaanderen",
- 'WBR' => "Brabant Wallon",
- 'WHT' => "Hainaut",
- 'WLG' => "Liege",
- 'WLX' => "Luxembourg",
- 'WNA' => "Namur",
- // While technically not a province, Brussels-Capital Region is needed here
- // because some places would be completely without a province if we did not
- // include it.
- // See http://drupal.org/node/228766 and http://drupal.org/node/291590.
- 'BRU' => "Brussels",
- );
- }
- /**
- * Returns minimum and maximum latitude and longitude needed to create a bounding box.
- */
- function location_bounds_be() {
- return array(
- 'minlng' => 2.5104,
- 'minlat' => 49.518533,
- 'maxlng' => 6.3713,
- 'maxlat' => 51.528667,
- );
- }
- function location_map_link_be_providers() {
- return array(
- 'google' => array(
- 'name' => 'Google Maps',
- 'url' => 'http://maps.google.be/',
- 'tos' => 'http://maps.google.be/help/terms_maps.html',
- ),
- );
- }
- function location_map_link_be_default_providers() {
- return array('google');
- }
- function location_map_link_be_google($location = array()) {
- $query_params = array();
- foreach (array('street', 'city', 'postal_code', 'country') as $field) {
- if (isset($location[$field])) {
- $query_params[] = $location[$field];
- }
- }
- if (count($query_params)) {
- return ('http://maps.google.co.be?q='. urlencode(implode(', ', $query_params)));
- }
- else {
- return NULL;
- }
- }
|