location.sh.inc 416 B

123456789101112131415161718192021
  1. <?php
  2. // Saint Helena
  3. function location_province_list_sh() {
  4. return array('A' => "Ascension",
  5. 'S' => "Saint Helena",
  6. 'T' => "Tristan da Cunha");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_sh() {
  12. return array(
  13. 'minlng' => -5.9486,
  14. 'minlat' => -16.042567,
  15. 'maxlng' => -5.7812,
  16. 'maxlat' => -15.896867,
  17. );
  18. }