location.bh.inc 450 B

1234567891011121314151617181920212223
  1. <?php
  2. // Bahrain
  3. function location_province_list_bh() {
  4. return array('CAP' => "Capital",
  5. 'CEN' => "Central",
  6. 'MUH' => "Muharraq",
  7. 'NOR' => "Northern",
  8. 'SOU' => "Southern");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_bh() {
  14. return array(
  15. 'minlng' => 50.402,
  16. 'minlat' => 25.862667,
  17. 'maxlng' => 50.66065,
  18. 'maxlat' => 26.339733,
  19. );
  20. }