Example #1
0
        public void OnGet()
        {
            var city = GeoIP.GetIPInfo(IP);

            if (city?.Latitude != null && city?.Longitude != null)
            {
                InitialLatitude  = city.Latitude.Value;
                InitialLongitude = city.Longitude.Value;
                InitialZoom      = 9;
            }
        }