0

我在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');
                });

            });
4

0 回答 0