Example #1
0
 //Constructors
 internal GoogleMapsGeoCoder()
 {
     if (_restionClient == null)
     {
         _restionClient = new RestionClient(GoogleMapsGeoCodingApiConstants.GoogleMapsGeoCodingApiUrl);
     }
 }
Example #2
0
        internal GoogleMapsGeoCoder(string apiKey)
        {
            if (_restionClient == null)
            {
                _restionClient = new RestionClient(GoogleMapsGeoCodingApiConstants.GoogleMapsGeoCodingApiUrl);
            }

            _apiKey = apiKey;
        }