You are here

location.is.inc in Location 7.3

Iceland.

File

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

/**
 * @file
 * Iceland.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_is() {
  return array(
    'AL' => "Austurland",
    'HF' => "Hofuoborgarsvaeoi",
    'NE' => "Norourland eystra",
    'NV' => "Norourland vestra",
    'SL' => "Suourland",
    'SN' => "Suournes",
    'VF' => "Vestfiroir",
    'VL' => "Vesturland",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_is() {
  return array(
    'minlng' => -25.3873,
    'minlat' => 63.426633,
    'maxlng' => -13.5579,
    'maxlat' => 67.17406699999999,
  );
}

Functions

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