You are here

location.mp.inc in Location 7.3

Northern Mariana Islands.

File

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

/**
 * @file
 * Northern Mariana Islands.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_mp() {
  return array(
    'N' => "Northern Islands",
    'R' => "Rota",
    'S' => "Saipan",
    'T' => "Tinian",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_mp() {
  return array(
    'minlng' => 143.2344,
    'minlat' => 14.1388,
    'maxlng' => 146.2014,
    'maxlat' => 20.6741,
  );
}

Functions

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