Created
June 25, 2015 07:29
-
-
Save astronomersiva/15ebf47a9dedf4bbcb82 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function geoFindMe(){ | |
if(navigator.geolocation){ | |
navigator.geolocation.getCurrentPosition(success, error, geo_options); | |
}else{ | |
alert("Geolocation services are not supported by your web browser."); | |
} | |
function success(position) { | |
var latitude = position.coords.latitude.toFixed(2); | |
var longitude = position.coords.longitude.toFixed(2); | |
var altitude = position.coords.altitude; | |
var accuracy = position.coords.accuracy; | |
weatherResult = 'http://api.openweathermap.org/data/2.5/weather?lat='+latitude+'&lon='+longitude+'&units=metric'; | |
console.log(weatherResult); | |
$.ajax({ | |
url: weatherResult, | |
dataType: 'jsonp', | |
success: function(dataWeGotViaJsonp){ | |
var params = (dataWeGotViaJsonp.main); | |
var lat = (dataWeGotViaJsonp.coord.lat); | |
var lon = (dataWeGotViaJsonp.coord.lon); | |
var temp = params.temp; | |
var humidity = params.humidity; | |
var temp_min = params.temp_min; | |
var temp_max = params.temp_max; | |
var weatherCode = dataWeGotViaJsonp.weather[0]['id']; | |
var weatherNow = dataWeGotViaJsonp.weather[0]['description']; | |
document.getElementById("weather").innerHTML = weatherNow; | |
document.getElementById("weatherParams").innerHTML = 'Temperature: '+temp+'°C<br>'+'Humidity: ' | |
+humidity+'%<br>Max. temp: '+temp_max+'°C<br>Min. temp: '+temp_min+'°C'; | |
switch(true){ | |
case (weatherCode == 800): document.getElementById("icon").innerHTML = | |
'<i class="wi wi-day-sunny"></i>'; | |
break; | |
case (weatherCode == 801): document.getElementById("icon").innerHTML = | |
'<i class="wi wi-day-cloudy"></i>'; | |
break; | |
case (weatherCode == 802): document.getElementById("icon").innerHTML = | |
'<i class="wi wi-day-cloudy"></i>'; | |
break; | |
case (weatherCode == 803): document.getElementById("icon").innerHTML = | |
'<i class="wi wi-day-cloudy"></i>'; | |
break; | |
case (weatherCode == 804): document.getElementById("icon").innerHTML = | |
'<i class="wi wi-cloudy"></i>'; | |
break; | |
case (weatherCode >= 200 && weatherCode <= 232): | |
document.getElementById("icon").innerHTML = '<i class="wi wi-thunderstorm"></i>'; | |
break; | |
case (weatherCode >= 300 && weatherCode <= 321): | |
document.getElementById("icon").innerHTML = '<i class="wi wi-day-sprinkle"></i>'; | |
break; | |
case (weatherCode >= 500 && weatherCode <= 531): | |
document.getElementById("icon").innerHTML = '<i class="wi wi-day-rain"></i>'; | |
break; | |
case (weatherCode >= 600 && weatherCode <= 622): | |
document.getElementById("icon").innerHTML = '<i class="wi wi-day-snow"></i>'; | |
break; | |
default: document.getElementById("icon").innerHTML = '<i class="wi wi-day-fog"></i>'; | |
} | |
} | |
}); | |
} | |
function error(error) { | |
alert("Unable to retrieve your location due to "+error.code + " : " + error.message); | |
}; | |
var geo_options = { | |
enableHighAccuracy: true, | |
maximumAge : 30000, | |
timeout : 27000 | |
}; | |
} | |
geoFindMe(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment