public ActionResult Weather(Location loc)
        {
            try
            {
                var service = new WeatherService();
                var model = new LocationIndexViewModel();
                model.Lat = loc.Lat;
                model.Lng = loc.Lng;
                model.Weathers = service.FindWeather(loc);

                return View("Weather", model);
            }
            catch (Exception ex)
            {
                ModelState.AddModelError(String.Empty, ex.Message);
            }
            return View("Error");
        }