我正在努力創建一個Web應用程序來顯示本地天氣。我首先調用navigator.geolocation獲取經度和緯度,然後使用下面的鏈接給API調用並獲得響應。API調用不工作在jquery
http://openweathermap.org/current#geo
試圖讓響應只是現在,將轉換後爲HTML。但沒有得到任何東西。請幫忙。
我codepen- http://codepen.io/nabendu82/pen/ONPvrN
$(document).ready(function() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
});
}
$("#getTemp").on("click", function() {
$.getJSON("api.openweathermap.org/data/2.5/weather?lat=latitude&lon=longitude", function (json) {
$(".message").html(JSON.stringify(json));
});
});
});
@ nabs82請問你能向我們展示console.log的經緯度變量的結果嗎? –