location.to.inc 397 B

123456789101112131415161718192021
  1. <?php
  2. // Tonga
  3. function location_province_list_to() {
  4. return array('H' => "Ha'apai",
  5. 'T' => "Tongatapu",
  6. 'V' => "Vava'u");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_to() {
  12. return array(
  13. 'minlng' => -176.29485,
  14. 'minlat' => -22.319633,
  15. 'maxlng' => -173.6335,
  16. 'maxlat' => -15.5681,
  17. );
  18. }