location.cu.inc 757 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // Cuba
  3. function location_province_list_cu() {
  4. return array('IJU' => "Isla de la Juventud",
  5. 'PRI' => "Pinar del Rio",
  6. 'LHA' => "La Habana",
  7. 'CLH' => "Ciudad de La Habana",
  8. 'MAT' => "Matanzas",
  9. 'CFU' => "Cienfuegos",
  10. 'VCL' => "Villa Clara",
  11. 'SSP' => "Sancti Spiritus",
  12. 'CAV' => "Ciego de Avila",
  13. 'CAM' => "Camaguey",
  14. 'LTU' => "Las Tunas",
  15. 'GRA' => "Granma",
  16. 'HOL' => "Holguin",
  17. 'SCU' => "Santiago de Cuba",
  18. 'GUA' => "Guantanamo");
  19. }
  20. /**
  21. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  22. */
  23. function location_bounds_cu() {
  24. return array(
  25. 'minlng' => -84.88225,
  26. 'minlat' => 19.796767,
  27. 'maxlng' => -74.10875,
  28. 'maxlat' => 23.263867,
  29. );
  30. }