location.nr.inc 624 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // Nauru
  3. function location_province_list_nr() {
  4. return array('AO' => "Aiwo",
  5. 'AA' => "Anabar",
  6. 'AT' => "Anetan",
  7. 'AI' => "Anibare",
  8. 'BA' => "Baiti",
  9. 'BO' => "Boe",
  10. 'BU' => "Buada",
  11. 'DE' => "Denigomodu",
  12. 'EW' => "Ewa",
  13. 'IJ' => "Ijuw",
  14. 'ME' => "Meneng",
  15. 'NI' => "Nibok",
  16. 'UA' => "Uaboe",
  17. 'YA' => "Yaren");
  18. }
  19. /**
  20. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  21. */
  22. function location_bounds_nr() {
  23. return array(
  24. 'minlng' => 167.0567,
  25. 'minlat' => -0.589533,
  26. 'maxlng' => 167.11675,
  27. 'maxlat' => -0.5351,
  28. );
  29. }