Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2. $(function(){
  3. $.getJSON('https://ipinfo.io',function(data){
  4.  
  5. //z data dostanes gps,mesto,štat,ipcku... debugni si to a uvidíš čo všetko sa v tom objekte nachádza
  6.  
  7. var gps = data.loc;
  8. var loc = gps.split(',');
  9.  
  10. //na zistenie pocasia potrebujes vlastny google api key a zadavas do requestu gps suradnice lat a lon
  11.  
  12. $.getJSON('http://api.openweathermap.org/data/2.5/weather? lat='+loc[0]+'&lon='+loc[1]+'&APPID=d0392f67ebcff342709e4e36cbb00878',function(wd){
  13.  
  14. //z wd dostanes zase plnu picu informacii
  15.  
  16. var icon = wd.weather[0].icon;
  17. var iconSrc = 'http://api.openweathermap.org//img/w/' + icon + '.png';
  18. var weather = wd.weather[0].description;
  19. var temperature = wd.main.temp_max - 273.15;
  20.  
  21. // DIV ID = '1'
  22. //vytvara obrazok v divku
  23. $('#1').prepend('<img src = '+iconSrc+'><p>Location : '+wd.name +'</p><p>Weather : '+weather+'</p><p>Temperature : '+temperature+'</p>');
  24. })
  25. });
  26.  
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement