location.tl.inc 712 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // Timor Leste
  3. function location_province_list_tl() {
  4. return array(
  5. 'AL' => "Aileu",
  6. 'AN' => "Ainaro",
  7. 'BA' => "Baucau",
  8. 'BO' => "Bobonaro",
  9. 'CO' => "Cova Lima",
  10. 'DI' => "Dili",
  11. 'ER' => "Ermera",
  12. 'LA' => "Lautem",
  13. 'LI' => "Liquica",
  14. 'MT' => "Manatuto",
  15. 'MF' => "Manufahi",
  16. 'OE' => "Oecussi",
  17. 'VI' => "Viqueque",
  18. );
  19. }
  20. /**
  21. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  22. */
  23. function location_bounds_tl() {
  24. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  25. // EPSG:900913
  26. return array(
  27. 'minlng' => 124.030237,
  28. 'minlat' => -9.5012277,
  29. 'maxlng' => 127.313551,
  30. 'maxlat' => -8.1353162,
  31. );
  32. }