public string ParseJSON()
        {
            while (true)
            {
                if (PlaceName != Constants.TruliaDbAddressNulls.NoPlaceName)
                {
                    JSON = AddressParser.GetJsonMapResponseThrowProxy(PlaceName, Constants.TypeOfMapGrabbing.ByAddress);
                }
                else
                {
                    Console.WriteLine(PlaceName);
                    throw new Exception();
                }
                if (JSON != Constants.WebAttrsNames.NotFound)
                {
                    break;
                }
            }

            return(JSON);
        }