public static string GetJsonMapResponseThrowProxy(string addressOrLatlng, Constants.TypeOfMapGrabbing type, string apiKey = "")
        {
            string GETRequestLink = type == Constants.TypeOfMapGrabbing.ByAddress ? Constants.GoogleRequestParams.AddressMapsQueryPattern + addressOrLatlng.Replace(" ", "+") :
                                    Constants.GoogleRequestParams.LatlngMapsQueryPattern + addressOrLatlng; //в адресе заменяем пробелы на плюсы для соответствия формату запроса + исходя из типа, задаем правильный текст запроса

            if (apiKey != "")
            {
                GETRequestLink += "&key=" + apiKey;
            }
            return(WebHelpers.GetWebResponceContentThrowProxy(GETRequestLink, ProxySolver.Instance.getNewProxy()));
        }