| 12345678910111213141516171819 | <?php// Faroe Islandsfunction location_province_list_fo() {  return array();}/** * Returns minimum and maximum latitude and longitude needed to create a bounding box. */function location_bounds_fo() {  return array(    'minlng' => -7.71855,    'minlat' => 61.392267,    'maxlng' => -6.3104,    'maxlat' => 62.419167,  );}
 |