location.aw.inc 333 B

12345678910111213141516171819
  1. <?php
  2. // Aruba
  3. function location_province_list_aw() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_aw() {
  10. return array(
  11. 'minlng' => -70.08745,
  12. 'minlat' => 12.4276,
  13. 'maxlng' => -69.83805,
  14. 'maxlat' => 12.647367,
  15. );
  16. }