示例#1
0
        public async Task ShouldReverseGeocodeARandomBrazilAddress()
        {
            try
            {
                var googleMapsGeoCoder = GoogleMapsGeoCoderFactory.CreateGoogleMapsGeoCoder().ApiKey(_apiKey);

                IGoogleMapsAddress address = await googleMapsGeoCoder
                                             .ReverseGeoCodeAsync(new GeoLocation()
                {
                    Latitude = "-19.8817305", Longitude = "-43.9401788"
                }, new GoogleMapsGeoCoderOptions()
                {
                    MustCacheFullResponse = true
                });

                Console.WriteLine(address.GeoLocation.Latitude);

                Console.WriteLine(address.GeoLocation.Longitude);

                Console.WriteLine(address.FormattedAddress);
            }
            catch (GoogleMapsGeoCoderException googleMapsGeoCoderException)
            {
                Console.WriteLine(googleMapsGeoCoderException.GoogleMapsGeoCodingApiStatus);

                Assert.Fail(googleMapsGeoCoderException.Message);
                throw;
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.Message);
                throw;
            }
        }
示例#2
0
        public async Task ShouldReverseGeocodeARandomBrazilAddressWithPlaceId()
        {
            try
            {
                var googleMapsGeoCoder = GoogleMapsGeoCoderFactory.CreateGoogleMapsGeoCoder().ApiKey(_apiKey);

                IGoogleMapsAddress address = await googleMapsGeoCoder
                                             .ReverseGeoCodeAsync("ChIJlaRK3nmapgARXzPX-2Ksopg", new GoogleMapsGeoCoderOptions()
                {
                    MustCacheFullResponse = true
                });

                Console.WriteLine(address.GeoLocation.Latitude);

                Console.WriteLine(address.GeoLocation.Longitude);

                Console.WriteLine(address.FormattedAddress);
            }
            catch (GoogleMapsGeoCoderException googleMapsGeoCoderException)
            {
                Console.WriteLine(googleMapsGeoCoderException.GoogleMapsGeoCodingApiStatus);

                Assert.Fail(googleMapsGeoCoderException.Message);
                throw;
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.Message);
                throw;
            }
        }
示例#3
0
        public async Task ShouldGeocodeARandomBrazilAddress()
        {
            try
            {
                var googleMapsGeoCoder = GoogleMapsGeoCoderFactory.CreateGoogleMapsGeoCoder(_apiKey);

                IGoogleMapsAddress address = await googleMapsGeoCoder
                                             .ApiKey(_apiKey)
                                             .GeoCodeAsync("Rua ester de lima 150", new GoogleMapsGeoCoderOptions()
                {
                    MustCacheFullResponse = true
                });

                Console.WriteLine(address.GeoLocation.Latitude);

                Console.WriteLine(address.GeoLocation.Longitude);

                Console.WriteLine(address.FormattedAddress);
            }
            catch (GoogleMapsGeoCoderException googleMapsGeoCoderException)
            {
                Console.WriteLine(googleMapsGeoCoderException.GoogleMapsGeoCodingApiStatus);

                Assert.Fail(googleMapsGeoCoderException.Message);
                throw;
            }
            catch (Exception ex)
            {
                Assert.Fail(ex.Message);
                throw;
            }
        }