location.tf.inc 485 B

1234567891011121314151617181920212223
  1. <?php
  2. // French Southern Territories
  3. function location_province_list_tf() {
  4. return array('C' => "Iles Crozet",
  5. 'K' => "Iles Kerguelen",
  6. 'A' => "Ile Amsterdam",
  7. 'P' => "Ile Saint-Paul",
  8. 'D' => "Adelie Land");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_tf() {
  14. return array(
  15. 'minlng' => 50.0717,
  16. 'minlat' => -49.642933,
  17. 'maxlng' => 70.5273,
  18. 'maxlat' => -45.8805,
  19. );
  20. }