location.qa.inc 601 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Qatar
  3. function location_province_list_qa() {
  4. return array('DW' => "Ad Dawhah",
  5. 'GW' => "Al Ghuwayriyah",
  6. 'JM' => "Al Jumayliyah",
  7. 'KR' => "Al Khawr",
  8. 'WK' => "Al Wakrah",
  9. 'RN' => "Ar Rayyan",
  10. 'JB' => "Jarayan al Batinah",
  11. 'MS' => "Madinat ash Shamal",
  12. 'UD' => "Umm Sa'id",
  13. 'UL' => "Umm Salal");
  14. }
  15. /**
  16. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  17. */
  18. function location_bounds_qa() {
  19. return array(
  20. 'minlng' => 50.70915,
  21. 'minlat' => 24.6815,
  22. 'maxlng' => 51.74715,
  23. 'maxlat' => 26.170267,
  24. );
  25. }