You are here

location.bb.inc in Location 7.3

Barbados.

File

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

/**
 * @file
 * Barbados.
 */

/**
 * Returns an associative array of states/territories.
 */
function location_province_list_bb() {
  return array(
    'CC' => "Christ Church",
    'AND' => "Saint Andrew",
    'GEO' => "Saint George",
    'JAM' => "Saint James",
    'JOH' => "Saint John",
    'JOS' => "Saint Joseph",
    'LUC' => "Saint Lucy",
    'MIC' => "Saint Michael",
    'PET' => "Saint Peter",
    'PHI' => "Saint Philip",
    'THO' => "Saint Thomas",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_bb() {
  return array(
    'minlng' => -59.6715,
    'minlat' => 13.018433,
    'maxlng' => -59.3994,
    'maxlat' => 13.285133,
  );
}

Functions

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