location.sj.inc 531 B

1234567891011121314151617181920212223
  1. <?php
  2. // Svalbard and Jan Mayen
  3. function location_province_list_sj() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_sj() {
  10. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  11. // EPSG:4326
  12. // Note: I'm using the bounding box for Norway here, because it includes
  13. // both Svalbard and Jan Mayen.
  14. return array(
  15. 'minlng' => -9.1168289,
  16. 'minlat' => -54.462359,
  17. 'maxlng' => 33.6410262,
  18. 'maxlat' => 80.7697480,
  19. );
  20. }