You are here

location.ee.inc in Location 7.3

Estonia.

File

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

/**
 * @file
 * Estonia.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_ee() {
  return array(
    '37' => "Harju County",
    '39' => "Hiiu County",
    '44' => "Ida-Viru County",
    '49' => "Jõgeva County",
    '51' => "Järva County",
    '57' => "Lääne County",
    '59' => "Lääne-Viru County",
    '65' => "Põlva County",
    '67' => "Pärnu County",
    '70' => "Rapla County",
    '74' => "Saare County",
    '78' => "Tartu County",
    '82' => "Valga County",
    '84' => "Viljandi County",
    '86' => "Võru County",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_ee() {
  return array(
    'minlng' => 21.75065,
    'minlat' => 57.6099,
    'maxlng' => 28.1741,
    'maxlat' => 59.6835,
  );
}

Functions

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