location.cc.inc 484 B

1234567891011121314151617181920212223
  1. <?php
  2. // Cocos (Keeling) Islands
  3. function location_province_list_cc() {
  4. return array('D' => "Direction Island",
  5. 'H' => "Home Island",
  6. 'O' => "Horsburgh Island",
  7. 'S' => "South Island",
  8. 'W' => "West Island");
  9. }
  10. /**
  11. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  12. */
  13. function location_bounds_cc() {
  14. return array(
  15. 'minlng' => 95.2723,
  16. 'minlat' => -12.2493,
  17. 'maxlng' => 96.8062,
  18. 'maxlat' => -11.742167,
  19. );
  20. }