You are here

location.nz.inc in Location 7.4

File

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

// New Zealand
function location_province_list_nz() {
  return array(
    'AUK' => "Auckland",
    'BOP' => "Bay of Plenty",
    'CAN' => "Canterbury",
    'GIS' => "Gisborne",
    'HKB' => "Hawke's Bay",
    'MBH' => "Marlborough",
    'MWT' => "Manawatu-Wanganui",
    'NSN' => "Nelson",
    'NTL' => "Northland",
    'OTA' => "Otago",
    'STL' => "Southland",
    'TAS' => "Tasman",
    'TKI' => "Taranaki",
    'WGN' => "Wellington",
    'WKO' => "Waikato",
    'WTC' => "West Coast",
  );
}

/**
 * Returns minimum and maximum latitude and longitude needed to create a bounding box.
 */
function location_bounds_nz() {
  return array(
    'minlng' => -178.94835,
    'minlat' => -57.294267,
    'maxlng' => 179.22415,
    'maxlat' => -8.536766999999999,
  );
}

Functions

Namesort descending Description
location_bounds_nz Returns minimum and maximum latitude and longitude needed to create a bounding box.
location_province_list_nz