You are here

location.pm.inc in Location 7.3

Saint Pierre and Miquelon.

File

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

/**
 * @file
 * Saint Pierre and Miquelon.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_pm() {
  return array(
    'P' => "Saint Pierre",
    'M' => "Miquelon",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_pm() {
  return array(
    'minlng' => -56.41835,
    'minlat' => 46.7927,
    'maxlng' => -56.1141,
    'maxlat' => 47.203467,
  );
}

Functions

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