location.eh.inc 342 B

12345678910111213141516171819
  1. <?php
  2. // Western Sahara
  3. function location_province_list_eh() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_eh() {
  10. return array(
  11. 'minlng' => -17.08725,
  12. 'minlat' => 20.761433,
  13. 'maxlng' => -8.6836,
  14. 'maxlat' => 27.654567,
  15. );
  16. }