location.uz.inc 691 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // Uzbekistan
  3. function location_province_list_uz() {
  4. return array('AN' => "Andijon",
  5. 'BU' => "Buxoro",
  6. 'FA' => "Farg'ona",
  7. 'JI' => "Jizzax",
  8. 'NG' => "Namangan",
  9. 'NW' => "Navoiy",
  10. 'QA' => "Qashqadaryo",
  11. 'QR' => "Qoraqalpog'iston Republikasi",
  12. 'SA' => "Samarqand",
  13. 'SI' => "Sirdaryo",
  14. 'SU' => "Surxondaryo",
  15. 'TK' => "Toshkent city",
  16. 'TO' => "Toshkent region",
  17. 'XO' => "Xorazm");
  18. }
  19. /**
  20. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  21. */
  22. function location_bounds_uz() {
  23. return array(
  24. 'minlng' => 55.975,
  25. 'minlat' => 37.1818,
  26. 'maxlng' => 73.0411,
  27. 'maxlat' => 45.6219,
  28. );
  29. }