location.nc.inc 396 B

123456789101112131415161718192021
  1. <?php
  2. // New Caledonia
  3. function location_province_list_nc() {
  4. return array('L' => "Iles Loyaute",
  5. 'N' => "Nord",
  6. 'S' => "Sud");
  7. }
  8. /**
  9. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  10. */
  11. function location_bounds_nc() {
  12. return array(
  13. 'minlng' => 159.8613,
  14. 'minlat' => -22.9837,
  15. 'maxlng' => 168.914,
  16. 'maxlat' => -18.4219,
  17. );
  18. }