location.er.inc 569 B

1234567891011121314151617181920212223242526
  1. <?php
  2. // Eritrea
  3. function location_province_list_er() {
  4. return array(
  5. 'MA' => "Central (Maekel)",
  6. 'KE' => "Anseba (Keren)",
  7. 'DK' => "Southern Red Sea (Debub-Keih-Bahri)",
  8. 'SK' => "Northern Red Sea (Semien-Keih-Bahri)",
  9. 'DE' => "Southern (Debub)",
  10. 'BR' => "Gash-Barka (Barentu)",
  11. );
  12. }
  13. /**
  14. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  15. */
  16. function location_bounds_er() {
  17. return array(
  18. 'minlng' => 36.3629,
  19. 'minlat' => 12.344214,
  20. 'maxlng' => 43.0529,
  21. 'maxlat' => 18.039133,
  22. );
  23. }