You are here

location.tl.inc in Location 7.3

Timor Leste.

File

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

/**
 * @file
 * Timor Leste.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_tl() {
  return array(
    'AL' => "Aileu",
    'AN' => "Ainaro",
    'BA' => "Baucau",
    'BO' => "Bobonaro",
    'CO' => "Cova Lima",
    'DI' => "Dili",
    'ER' => "Ermera",
    'LA' => "Lautem",
    'LI' => "Liquica",
    'MT' => "Manatuto",
    'MF' => "Manufahi",
    'OE' => "Oecussi",
    'VI' => "Viqueque",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_tl() {

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => 124.030237,
    'minlat' => -9.501227699999999,
    'maxlng' => 127.313551,
    'maxlat' => -8.1353162,
  );
}

Functions

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