location.aq.inc 359 B

12345678910111213141516171819
  1. <?php
  2. // Antarctica
  3. function location_province_list_aq() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_aq() {
  10. return array(
  11. 'minlng' => -179.999427042259,
  12. 'minlat' => -89.9,
  13. 'maxlng' => 179.999427042256,
  14. 'maxlat' => -60.9997330347133,
  15. );
  16. }