You are here

location.cr.inc in Location 7.3

Costa Rica.

File

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

/**
 * @file
 * Costa Rica.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_cr() {
  return array(
    'AL' => "Alajuela",
    'CA' => "Cartago",
    'GU' => "Guanacaste",
    'HE' => "Heredia",
    'LI' => "Limon",
    'PU' => "Puntarenas",
    'SJ' => "San Jose",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_cr() {
  return array(
    'minlng' => -87.01515000000001,
    'minlat' => 5.4829,
    'maxlng' => -82.61450000000001,
    'maxlat' => 11.217367,
  );
}

Functions

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