| 123456789101112131415161718192021 | <?php// Lebanonfunction location_province_list_lb() {  return array(  );}/** * Returns minimum and maximum latitude and longitude needed to create a bounding box. */function location_bounds_lb() {  return array(    'minlng' => 35.2636,    'minlat' => 33.262433,    'maxlng' => 36.56995,    'maxlat' => 34.720367,  );}
 |