You are here

location.pn.inc in Location 7.3

Pitcairn.

File

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

/**
 * @file
 * Pitcairn.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_pn() {
  return array();
}

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

  // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  // EPSG:900913
  return array(
    'minlng' => -130.75307,
    'minlat' => -25.077124,
    'maxlng' => -124.77715,
    'maxlat' => -23.924326,
  );
}

Functions

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