location.hn.inc 793 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // Honduras
  3. function location_province_list_hn() {
  4. return array('AT' => "Atlantida",
  5. 'CH' => "Choluteca",
  6. 'CL' => "Colon",
  7. 'CM' => "Comayagua",
  8. 'CP' => "Copan",
  9. 'CR' => "Cortes",
  10. 'PA' => "El Paraiso",
  11. 'FM' => "Francisco Morazan",
  12. 'GD' => "Gracias a Dios",
  13. 'IN' => "Intibuca",
  14. 'IB' => "Islas de la Bahia (Bay Islands)",
  15. 'PZ' => "La Paz",
  16. 'LE' => "Lempira",
  17. 'OC' => "Ocotepeque",
  18. 'OL' => "Olancho",
  19. 'SB' => "Santa Barbara",
  20. 'VA' => "Valle",
  21. 'YO' => "Yoro");
  22. }
  23. /**
  24. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  25. */
  26. function location_bounds_hn() {
  27. return array(
  28. 'minlng' => -89.3019,
  29. 'minlat' => 12.961867,
  30. 'maxlng' => -82.8413,
  31. 'maxlat' => 17.467133,
  32. );
  33. }