You are here

location.li.inc in Location 7.3

Liechtenstein.

File

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

/**
 * @file
 * Liechtenstein.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_li() {
  return array(
    'V' => "Vaduz",
    'A' => "Schaan",
    'B' => "Balzers",
    'N' => "Triesen",
    'E' => "Eschen",
    'M' => "Mauren",
    'T' => "Triesenberg",
    'R' => "Ruggell",
    'G' => "Gamprin",
    'L' => "Schellenberg",
    'P' => "Planken",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_li() {
  return array(
    'minlng' => 9.417494,
    'minlat' => 46.997118,
    'maxlng' => 9.61825,
    'maxlat' => 47.206967,
  );
}

Functions

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