location.pe.inc 907 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // Peru
  3. function location_province_list_pe() {
  4. return array('AM' => "Amazonas",
  5. 'AN' => "Ancash",
  6. 'AP' => "Apurimac",
  7. 'AR' => "Arequipa",
  8. 'AY' => "Ayacucho",
  9. 'CJ' => "Cajamarca",
  10. 'CL' => "Callao",
  11. 'CU' => "Cusco",
  12. 'HV' => "Huancavelica",
  13. 'HO' => "Huanuco",
  14. 'IC' => "Ica",
  15. 'JU' => "Junin",
  16. 'LD' => "La Libertad",
  17. 'LY' => "Lambayeque",
  18. 'LI' => "Lima",
  19. 'LO' => "Loreto",
  20. 'MD' => "Madre de Dios",
  21. 'MO' => "Moquegua",
  22. 'PA' => "Pasco",
  23. 'PI' => "Piura",
  24. 'PU' => "Puno",
  25. 'SM' => "San Martin",
  26. 'TA' => "Tacna",
  27. 'TU' => "Tumbes",
  28. 'UC' => "Ucayali");
  29. }
  30. /**
  31. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  32. */
  33. function location_bounds_pe() {
  34. return array(
  35. 'minlng' => -81.3752,
  36. 'minlat' => -18.247967,
  37. 'maxlng' => -68.75585,
  38. 'maxlat' => -0.050133,
  39. );
  40. }