location.tj.inc 405 B

123456789101112131415161718192021
  1. <?php
  2. // Tajikistan
  3. function location_province_list_tj() {
  4. return array('GB' => "Gorno-Badakhstan",
  5. 'KT' => "Khatlon",
  6. 'SU' => "Sughd");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_tj() {
  12. return array(
  13. 'minlng' => 67.42345,
  14. 'minlat' => 36.7487,
  15. 'maxlng' => 75.1309,
  16. 'maxlat' => 41.066867,
  17. );
  18. }