4

mu openweather API を地理位置情報と連携させるにはどうすればよいですか? これは私の現在のhtmlコードです:

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css">
        <link rel="stylesheet" href="main.css">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
        <script type='text/javascript' src='app.js'></script>
    </head>
    <body>
        <div class="jumbotron">
            <button onclick="getLocation()">Get my location.</button>
            <p id="demo"></p>

            <script>
                var x = document.getElementById("demo");
                function getLocation() {
                    if (navigator.geolocation) {
                        navigator.geolocation.getCurrentPosition(showPosition);
                    } else { 
                        x.innerHTML = "Geolocation is not supported by this browser.";
                    }
                }

                function showPosition(position) {
                    x.innerHTML = "Latitude: " + position.coords.latitude + 
                                  "<br>Longitude: " + position.coords.longitude;    
                }
            </script>

            <p>The weather outside is: </p> 
            <div class= "weather">
                Oops.. there is no temperature available for your location right now.
            </div>
        </div>                                  
    </body>
</html>

そして私のJavaScriptコード:

$(document).ready(function(){
    $.getJSON( "http://api.openweathermap.org/data/2.5/weather?q=Eindhoven&appid=9334f947893792dcb9b2e2c05ae23eb0", function( data ) {
        $('.weather').html(Math.round(data.main.temp-273)+ ' degrees Celcius');
    });

});

アイントホーフェン市の天気を機能させましたが、緯度と経度に合わせて調整できるようにしたいと考えています。誰かが私のコードを修正できますか? そして、私を助けますか?

このリンクと関係があることは知っています: api.openweathermap.org/data/2.5/weather?lat={lat}&lon={lon} しかし、独自の緯度と経度を実装する方法がわかりません...

4

2 に答える 2

5

サードパーティ API を使用して場所に関するデータを取得できます。例: http://ip-api.com/

var getIP = 'http://ip-api.com/json/';
$.getJSON(getIP).done(function(location) {
    console.log(location)
})

次に、上記で取得した ip-api を使用して、OpenWeatherMap サービスから WeatherData を取得します。

var getIP = 'http://ip-api.com/json/';
var openWeatherMap = 'http://api.openweathermap.org/data/2.5/weather'
$.getJSON(getIP).done(function(location) {
    $.getJSON(openWeatherMap, {
        lat: location.lat,
        lon: location.lon,
        units: 'metric',
        appid: 'APIKEY'
    }).done(function(weather) {
        console.log(weather)
    })
})

この場合、摂氏温度 (メートル法)

または、HTML5 Geolocation API を使用します (Google Chrome では、HTTPSまたは でのみ動作しますlocalhost) 。

var openWeatherMap = 'http://api.openweathermap.org/data/2.5/weather'
if (window.navigator && window.navigator.geolocation) {
    window.navigator.geolocation.getCurrentPosition(function(position) {
        $.getJSON(openWeatherMap, {
            lat: position.coords.latitude,
            lon: position.coords.longitude,
            units: 'metric',
            appid: 'APIKEY'
        }).done(function(weather) {
            console.log(weather)
        })
    })
}
于 2015-11-27T04:55:21.803 に答える