location.mp.inc 434 B

12345678910111213141516171819202122
  1. <?php
  2. // Northern Mariana Islands
  3. function location_province_list_mp() {
  4. return array('N' => "Northern Islands",
  5. 'R' => "Rota",
  6. 'S' => "Saipan",
  7. 'T' => "Tinian");
  8. }
  9. /**
  10. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  11. */
  12. function location_bounds_mp() {
  13. return array(
  14. 'minlng' => 143.2344,
  15. 'minlat' => 14.1388,
  16. 'maxlng' => 146.2014,
  17. 'maxlat' => 20.6741,
  18. );
  19. }