問題の場所はわかりませんが、選択したdivには何も表示されませんでした。openWeatherMap APIからデータを取得できませんでした。JavaScript
$(document).ready(function(){
var lat, lng, data;
// get the current location
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
lat = position.coords.latitude;
lng = position.coords.longitude;
});
}else {
alert('Geo Location feature is not supported in this browser.');
}
//get the data from the openWeatherMap API
function getData(){
$.getJSON('api.openweathermap.org/data/2.5/weather?lat='+lat+'&lon='+lng+'', function(json){
data = json;
});
}
$('button').on('click', function(){
getData();
$(this).remove();
$('.container').removeClass('hidden');
$('#location').appendTo(data.name);
$('#Weather-condition').appendTo(data.weather.main);
$('#wind-speed').appendTo(data.wind);
});
});
で成功ショーのデータを使用すると、任意のエラーのためのコンソールを確認しましたですか? – yuriy636
エラーはありません@ yuriy636。 – SenDjasni
投稿したコード以外から 'getData()'を呼び出していますか?あなたのHTMLも投稿してください。 – yuriy636