(position)
| 34 | |
| 35 | //Setting user's location |
| 36 | function setPosition(position) { |
| 37 | let myLatitude = position.coords.latitude; |
| 38 | let myLongitude = position.coords.longitude; |
| 39 | |
| 40 | // console.log(myLongitude, myLatitude); |
| 41 | getWeather(myLatitude, myLongitude); |
| 42 | } |
| 43 | |
| 44 | //GET WEATHER |
| 45 |
nothing calls this directly
no test coverage detected