Как тут убрать лакацию города по ip? Чтобы просто название города вписать?
<link rel='stylesheet' href="https://cdn.rawgit.com/erikflowers/weather-icons/master/css/weather-icons.css" rel="stylesheet">
<link rel='stylesheet' href="https://cdn.rawgit.com/erikflowers/weather-icons/master/css/weather-icons-wind.css" rel="stylesheet">
<div id='place'></div>
<div id='temperature'></div>
<div id='degree' class='Celsius'>°<span id='degree-system'>C</span></div>
<div id='weather'></div>
<i class='wi'></i>
<script>
var coord;
var APIcall;
var FarTemp;
var CelTemp;
function showWeather(json) {
console.log(json.weather[0].main.toLowerCase());
FarTemp = Math.round(json.main.temp * 1.8 + 32);
CelTemp = Math.round(json.main.temp);
var weatherIcon = 'wi-owm-' + json.weather[0].id;
$('#temperature').text(CelTemp);
$('#weather').text(json.weather[0].description);
$('.wi').addClass(weatherIcon);
};
function showPlace(json) {
console.log(json);
var coords = json.loc.split(',');
$('#place').text((json.city + ', ' + json.country));
APIcall = 'https://api.openweathermap.org/data/2.5/weather?q=Mikhaylov&APPID=2bae515a0124fef864cf38e0f2986b32&units=metric&lang=ru&lat=' + coords[0] + '&lon=' + coords[1];
$.getJSON(APIcall, showWeather);
}
$.getJSON('https://ipinfo.io/json', showPlace);
$('#degree').click(function () {
if ($('#degree').hasClass('Celsius')) {
$('#temperature').text(FarTemp);
$('#degree-system').text('F');
$('#degree').removeClass('Celsius');
$('#degree').addClass('Fahrenheit');
} else {
$('#temperature').text(CelTemp);
$('#degree-system').text('C');
$('#degree').removeClass('Fahrenheit');
$('#degree').addClass('Celsius');
}
});
</script>