var options = {
location: 44.0123 + ',' + 18.19455, // New Visoko
unit: 'c',
success: function(weather) {
html = "
";
html += weather.temp + '°' + weather.units.temp + '
';
html += '- ' + weather.city + ', ' + weather.region + '
';
html += "- " + weather.currently + '
';
html += '
';
for (var i = 0; i < 5; i++) {
var forecast = weather.forecast[i];
html += '';
html += "
";
html += forecast.high + '°' + weather.units.temp + '
';
html += "- Najniža dnevna: "+ forecast.low + ' ° ' + weather.units.temp + "
" + daysInBosnian[forecast.day] + ': ' + forecast.text + ' ';
html += "";
}
$('#weather').html(html);
},
error: function(error) {
$('#weather').html('' + error + '
');
}
}
var daysInBosnian = {
'Sun': 'Nedjelja',
'Mon': 'Ponedjeljak',
'Tue': 'Utorak',
'Wed': 'Srijeda',
'Thu': 'Četvrtak',
'Fri': 'Petak',
'Sat': 'Subota'
};
Weather.options = options