-
-
Save dineshigdd/acdf29ff18a748fb911bf3caca4a82ea to your computer and use it in GitHub Desktop.
The full code of "App.tsx" for OSM an d TypeScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import './App.css' | |
import Map from './map/Map' | |
import { useEffect , useState } from "react"; | |
function App() { | |
const [ city, setCity ] = useState<string>(); | |
const [ location, setLocation ] = useState({ | |
latitude: 0, | |
longitude:0, | |
display_name: "", | |
}); | |
useEffect(() => { | |
navigator.geolocation.getCurrentPosition( | |
getCurrentCityName, | |
); | |
}, []); | |
//reverse geocoding search | |
function getCurrentCityName(position : any) { | |
const url = 'https://nominatim.openstreetmap.org/reverse?format=jsonv2&lat=' | |
+ position.coords.latitude + '&lon=' | |
+ position.coords.longitude ; | |
fetch(url, { | |
method: "GET", | |
mode: "cors", | |
}) | |
.then((response) => response.json()) | |
.then((data) => { | |
setLocation({ latitude: position.coords.latitude, | |
longitude: position.coords.longitude, | |
display_name:`${ data.address.city }, ${ data.address.country }` }) | |
}); | |
} | |
//search for city coordinated based on form data | |
function submitHandler(e:any) { | |
e.preventDefault(); | |
let url = `https://nominatim.openstreetmap.org/search?city='${city}'&format=json&limit=1`; | |
fetch(url, { | |
method: "GET", | |
mode: "cors", | |
}) | |
.then((response) => { | |
if (response.ok) { | |
return response.json(); | |
} | |
}) | |
.then((data) => { | |
setLocation({ | |
latitude: data[0].lat, | |
longitude: data[0].lon, | |
display_name: data[0].display_name, | |
}) | |
}).catch(() => alert("Please Check your input")); | |
} | |
const handleChange = (event:any) => { | |
setCity(event.target.value); | |
}; | |
return ( | |
<div className='App'> | |
<section className='map-container'> | |
<Map location = { location }/> | |
</section> | |
<section className="form-container"> | |
<form> | |
<label>Enter the city:</label> | |
<input | |
placeholder="Los Angeles" | |
type="text" | |
value={city} | |
onChange={ handleChange } | |
id="city" | |
/> | |
<button onClick={ ( e )=> submitHandler( e ) }>Search</button> | |
</form> | |
</section> | |
</div> | |
) | |
} | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment