è stato pure aggiornato con ultima versione.
puoi provare anche con le nostre libs
// Docs at http://simpleweatherjs.com /* Does your browser support geolocation? */ if ("geolocation" in navigator) { $('.js-geolocation').show(); } else { $('.js-geolocation').hide(); } /* Where in the world are you? */ $('.js-geolocation').on('click', function() { navigator.geolocation.getCurrentPosition(function(position) { loadWeather(position.coords.latitude+','+position.coords.longitude); //load weather using your lat/lng coordinates }); }); /* * Test Locations * Austin lat/long: 30.2676,-97.74298 * Austin WOEID: 2357536 */ $(document).ready(function() { loadWeather('Seattle',''); //@params location, woeid }); function loadWeather(location, woeid) { $.simpleWeather({ location: location, woeid: woeid, unit: 'f', success: function(weather) { html = '<h2><i class="icon-'+weather.code+'"></i> '+weather.temp+'°'+weather.units.temp+'</h2><span class="bk-wth-tmp-alt bk-opacity-6"> or '+weather.alt.temp+'°C</span>'; html += '<span class="bk-wth-region">'+weather.city+', '+ weather.region; html += '<br><span class="bk-wth-cur pull-right">'+weather.currently+'</span></span>'; $("#weather").html(html); }, error: function(error) { $("#weather").html('<p>'+error+'</p>'); } }); }
$(document).ready(function() {
navigator.geolocation.getCurrentPosition(function(position) {
loadWeather(position.coords.latitude + ',' + position.coords.longitude);
});
});
In base al nuovo regolamento Europeo relativo alla protezione dei dati personali delle persone fisiche ed alla loro libera circolazione, ti invitiamo a leggere la nostra dichiarazione di Privacy
Cliccando su "ACCONSENTO" accetti tutte le norme contenute nella dichiarazione. Sei inoltre consapevole che durtante la navigazione utilizzeremo dei cookies. Questi files servono per memorizzare dati e preferenze. I server di questo forum possono essere ospitati al di fuori del tuo Paese di origine, proseguendo nella navigazione acconsenti alla raccolta, alla memorizzazione e all'elaborazione dei tuoi dati nel paese in cui è ospitato migratoria.it. Come utente registrato hai la facoltà di cancellare, modificare o scaricare i dati personali contenuti nel server, tramite le Impostazioni sulla privacy.
COMMENTA