Skip to content
location.ar.inc 1.32 KiB
Newer Older
 * Returns an associative array of states/territories where.
 *
 *   -> the keys are integers starting from 1
 *   -> the values are the English names for those states/territories
 *
 * The states are grouped together at the beginning of the array and sorted
 * alphabetically.
 *
 * The territories are grouped together at the end of the array and sorted
 * alphabetically.
 */
function location_province_list_ar() {
  return array(
    'A' => "Salta",
    'B' => "Buenos Aires",
    'C' => "Ciudad Autónoma de Buenos Aires (CABA)",
    'F' => "La Rioja",
    'G' => "Santiago del Estero",
    'H' => "Chaco",
    'J' => "San Juan",
    'K' => "Catamarca",
    'L' => "La Pampa",
    'M' => "Mendoza",
    'N' => "Misiones",
    'P' => "Formosa",
    'U' => "Chubut",
    'V' => "Tierra del Fuego",
    'W' => "Corrientes",

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_ar() {
  return array(
    'minlng' => -73.4967,
    'minlat' => -55.049767,
    'maxlng' => -53.64205,
    'maxlat' => -21.829967,
  );
}