location.an.inc 350 B

12345678910111213141516171819
  1. <?php
  2. // Netherlands Antilles
  3. function location_province_list_an() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_an() {
  10. return array(
  11. 'minlng' => -69.16155,
  12. 'minlat' => 11.711233,
  13. 'maxlng' => -66.13465,
  14. 'maxlat' => 12.397367,
  15. );
  16. }