location.cx.inc 344 B

12345678910111213141516171819
  1. <?php
  2. // Christmas Island
  3. function location_province_list_cx() {
  4. return array();
  5. }
  6. /**
  7. * Returns minimum and maximum latitude and longitude needed to create a bounding box.
  8. */
  9. function location_bounds_cx() {
  10. return array(
  11. 'minlng' => 105.619,
  12. 'minlat' => -10.3823,
  13. 'maxlng' => 105.69085,
  14. 'maxlat' => -10.351733,
  15. );
  16. }