我在js中有这个代码来获得当前温度,但现在它只是格罗宁根的温度。 如何使用地理位置获取当前位置的温度?
我知道它与某些事情有关:api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon}但我不知道要填写什么{ lat}和{lon}以及如何获取当前位置。 有人可以帮忙吗?
$(document).ready(function(){
$.getJSON( "http://api.openweathermap.org/data/2.5/weather?q=Groningen&units=metric&appid=9334f947893792dcb9b2e2c05ae23eb0", function( data ) {
$('.weather').html(Math.round(data.main.temp)+ ' degrees Celcius');
});
});