You are here

location.lu.inc in Location 7.3

Luxembourg.

File

supported/location.lu.inc
View source
<?php

/**
 * @file
 * Luxembourg.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_lu() {
  return array(
    'DD' => "Diekirch",
    'DC' => "Clervaux",
    'DR' => "Redange",
    'DV' => "Vianden",
    'DW' => "Wiltz",
    'GG' => "Grevenmacher",
    'GE' => "Echternach",
    'GR' => "Remich",
    'LL' => "Luxembourg",
    'LC' => "Capellen",
    'LE' => "Esch-sur-Alzette",
    'LM' => "Mersch",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_lu() {
  return array(
    'minlng' => 5.69075,
    'minlat' => 49.470867,
    'maxlng' => 6.43925,
    'maxlat' => 50.182633,
  );
}

Functions

Namesort descending Description
location_bounds_lu Returns minimum and maximum latitude and longitude needed to create a bounding box.
location_province_list_lu Returns an associative array of states/territories.