12345678910111213141516171819 |
- <?php
- // Christmas Island
- function location_province_list_cx() {
- return array();
- }
- /**
- * Returns minimum and maximum latitude and longitude needed to create a bounding box.
- */
- function location_bounds_cx() {
- return array(
- 'minlng' => 105.619,
- 'minlat' => -10.3823,
- 'maxlng' => 105.69085,
- 'maxlat' => -10.351733,
- );
- }
|