location.sy.inc 675 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // Syrian Arab Republic
  3. function location_province_list_sy() {
  4. return array('HA' => "Al Hasakah",
  5. 'LA' => "Al Ladhiqiyah",
  6. 'QU' => "Al Qunaytirah",
  7. 'RQ' => "Ar Raqqah",
  8. 'SU' => "As Suwayda",
  9. 'DA' => "Dara",
  10. 'DZ' => "Dayr az Zawr",
  11. 'DI' => "Dimashq",
  12. 'HL' => "Halab",
  13. 'HM' => "Hamah",
  14. 'HI' => "Hims",
  15. 'ID' => "Idlib",
  16. 'RD' => "Rif Dimashq",
  17. 'TA' => "Tartus");
  18. }
  19. /**
  20. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  21. */
  22. function location_bounds_sy() {
  23. return array(
  24. 'minlng' => 35.6348,
  25. 'minlat' => 32.3535,
  26. 'maxlng' => 42.21705,
  27. 'maxlat' => 37.3552,
  28. );
  29. }