location.py.inc 779 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // Paraguay
  3. function location_province_list_py() {
  4. return array('AG' => "Alto Paraguay",
  5. 'AN' => "Alto Parana",
  6. 'AM' => "Amambay",
  7. 'AS' => "Asuncion",
  8. 'BO' => "Boqueron",
  9. 'CG' => "Caaguazu",
  10. 'CZ' => "Caazapa",
  11. 'CN' => "Canindeyu",
  12. 'CE' => "Central",
  13. 'CC' => "Concepcion",
  14. 'CD' => "Cordillera",
  15. 'GU' => "Guaira",
  16. 'IT' => "Itapua",
  17. 'MI' => "Misiones",
  18. 'NE' => "Neembucu",
  19. 'PA' => "Paraguari",
  20. 'PH' => "Presidente Hayes",
  21. 'SP' => "San Pedro");
  22. }
  23. /**
  24. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  25. */
  26. function location_bounds_py() {
  27. return array(
  28. 'minlng' => -62.7526,
  29. 'minlat' => -27.5863,
  30. 'maxlng' => -54.24475,
  31. 'maxlat' => -19.248333,
  32. );
  33. }