location.cr.inc 497 B

12345678910111213141516171819202122232425
  1. <?php
  2. // Costa Rica
  3. function location_province_list_cr() {
  4. return array('AL' => "Alajuela",
  5. 'CA' => "Cartago",
  6. 'GU' => "Guanacaste",
  7. 'HE' => "Heredia",
  8. 'LI' => "Limon",
  9. 'PU' => "Puntarenas",
  10. 'SJ' => "San Jose");
  11. }
  12. /**
  13. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  14. */
  15. function location_bounds_cr() {
  16. return array(
  17. 'minlng' => -87.01515,
  18. 'minlat' => 5.4829,
  19. 'maxlng' => -82.6145,
  20. 'maxlat' => 11.217367,
  21. );
  22. }