12345678910111213141516171819 |
- <?php
- // Niue
- function location_province_list_nu() {
- return array();
- }
- /**
- * Returns minimum and maximum latitude and longitude needed to create a bounding box.
- */
- function location_bounds_nu() {
- return array(
- 'minlng' => -169.92405,
- 'minlat' => -19.139433,
- 'maxlng' => -169.63905,
- 'maxlat' => -18.9068,
- );
- }
|