The official source code for Serenum API.
https://api.serenum.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
692 B
26 lines
692 B
<?php |
|
|
|
if(!in_array('place', $arr_excluded)) { |
|
$arr_place = [ |
|
'historic' => $geo_historic, |
|
'highway' => $geo_highway, |
|
'road' => $geo_road, |
|
'neighbourhood' => $geo_neighbourhood, |
|
'suburb' => $geo_suburb, |
|
'hamlet' => $geo_hamlet, |
|
'village' => $geo_village, |
|
'town' => $geo_town, |
|
'city' => $geo_city, |
|
'state' => $geo_state, |
|
'state_district' => $geo_state_district, |
|
'municipality' => $geo_municipality, |
|
'county' => $geo_county, |
|
'post_code' => $geo_postcode, |
|
'country' => $geo_country, |
|
'country_code' => $geo_country_code, |
|
'full' => $geo_full, |
|
'link' => 'https://openstreetmap.org/?mlat='.$latitude.'&mlon='.$longitude.'&zoom=15' |
|
]; |
|
} |
|
|
|
?>
|