location.pr.inc 340 B

12345678910111213141516171819
  1. <?php
  2. // Puerto Rico
  3. function location_province_list_pr() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_pr() {
  10. return array(
  11. 'minlng' => -67.2807,
  12. 'minlat' => 17.913933,
  13. 'maxlng' => -65.38815,
  14. 'maxlat' => 18.459233,
  15. );
  16. }