location.om.inc 528 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // Oman
  3. function location_province_list_om() {
  4. return array('DA' => "Ad Dakhiliyah",
  5. 'BA' => "Al Batinah",
  6. 'WU' => "Al Wusta",
  7. 'SH' => "Ash Sharqiyah",
  8. 'ZA' => "Az Zahirah",
  9. 'MA' => "Masqat",
  10. 'MU' => "Musandam",
  11. 'ZU' => "Zufar");
  12. }
  13. /**
  14. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  15. */
  16. function location_bounds_om() {
  17. return array(
  18. 'minlng' => 52.003603,
  19. 'minlat' => 16.691113,
  20. 'maxlng' => 59.82915,
  21. 'maxlat' => 26.417867,
  22. );
  23. }