| 12345678910111213141516171819 | <?php// Sloveniafunction location_province_list_si() {  return array();}/** * Returns minimum and maximum latitude and longitude needed to create a bounding box. */function location_bounds_si() {  return array(    'minlng' => 13.4225,    'minlat' => 45.352576,    'maxlng' => 16.576871,    'maxlat' => 46.901,  );}
 |