location.bv.inc 522 B

12345678910111213141516171819202122
  1. <?php
  2. // Bouvet Island
  3. function location_province_list_bv() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_bv() {
  10. // NaturalEarth 10m Admin 0 - Countries (v1.3.0)
  11. // Bounds manually eyeballed by bdragon in EPSG:4326 using the coordinate
  12. // readout in udig, because the poly is grouped with Norway.
  13. return array(
  14. 'minlng' => 3.31,
  15. 'minlat' => -54.4823,
  16. 'maxlng' => 3.5201,
  17. 'maxlat' => -54.3444,
  18. );
  19. }