コード例 #1
0
        public void GeocodeAddress(string address)
        {
            using (BingMapsService.GeocodeServiceClient client = new BingMapsService.GeocodeServiceClient("CustomBinding_IGeocodeService"))
            {
                client.GeocodeCompleted += (o, e) =>
                {
                    if (e.Error == null)
                    {
                        if (e.Result.Results.Length > 0)
                            GeocodeResult = e.Result.Results[0];
                    }
                };

                BingMapsService.GeocodeRequest request = new BingMapsService.GeocodeRequest();
                request.Credentials = new Credentials() { ApplicationId = "aOyFCmxtUgVSoHjkiyg~BGHaMho-ZThx5-KH-3X2kg~AgxaPsUOnRYhaxfAC6W8Wpx8pd-ZIQI17FRkPkd9llQm4I5-5XpkUYDOcGXqc_x5" };
                request.Query = address;
                client.GeocodeAsync(request);
            }
        }
コード例 #2
0
        public void GeocodeAddress(string address)
        {
            using (BingMapsService.GeocodeServiceClient client = new BingMapsService.GeocodeServiceClient("CustomBinding_IGeocodeService"))
            {
                client.GeocodeCompleted += (o, e) =>
                {
                    if (e.Error == null)
                    {
                        if (e.Result.Results.Length > 0)
                        {
                            GeocodeResult = e.Result.Results[0];
                        }
                    }
                };

                BingMapsService.GeocodeRequest request = new BingMapsService.GeocodeRequest();
                request.Credentials = new Credentials()
                {
                    ApplicationId = "aOyFCmxtUgVSoHjkiyg~BGHaMho-ZThx5-KH-3X2kg~AgxaPsUOnRYhaxfAC6W8Wpx8pd-ZIQI17FRkPkd9llQm4I5-5XpkUYDOcGXqc_x5"
                };
                request.Query = address;
                client.GeocodeAsync(request);
            }
        }