location.ve.inc 907 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // Venezuela
  3. function location_province_list_ve() {
  4. return array('Z' => "Amazonas",
  5. 'B' => "Anzoategui",
  6. 'C' => "Apure",
  7. 'D' => "Aragua",
  8. 'E' => "Barinas",
  9. 'F' => "Bolivar",
  10. 'G' => "Carabobo",
  11. 'H' => "Cojedes",
  12. 'Y' => "Delta Amacuro",
  13. 'I' => "Falcon",
  14. 'J' => "Guarico",
  15. 'K' => "Lara",
  16. 'L' => "Merida",
  17. 'M' => "Miranda",
  18. 'N' => "Monagas",
  19. 'O' => "Nueva Esparta",
  20. 'P' => "Portuguesa",
  21. 'R' => "Sucre",
  22. 'S' => "Tachira",
  23. 'T' => "Trujillo",
  24. 'X' => "Vargas",
  25. 'U' => "Yaracuy",
  26. 'V' => "Zulia",
  27. 'A' => "Federal District",
  28. 'W' => "Federal Dependency");
  29. }
  30. /**
  31. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  32. */
  33. function location_bounds_ve() {
  34. return array(
  35. 'minlng' => -73.37305,
  36. 'minlat' => 0.793967,
  37. 'maxlng' => -59.8755,
  38. 'maxlat' => 15.7633,
  39. );
  40. }