2 地点間のルート検索を実装しようとしたときに、この記事を使用しましたが、エラーが発生します。
型または名前空間名 'findroute' が見つかりませんでした (using ディレクティブまたはアセンブリ参照がありませんか?)
using findroute.geocodeservice;
private void Geocode(string strAddress, int waypointIndex)
{
// Here we create the service variable and set the callback method using the GeocodeCompleted property.
findroute.geocodeservice.GeocodeServiceClient geocodeService = new findroute.geocodeservice.GeocodeServiceClient("BasicHttpBinding_IGeocodeService");
geocodeService.GeocodeCompleted += new EventHandler<findroute.geocodeservice.GeocodeCompletedEventArgs>(geocodeService_GeocodeCompleted);
// Here we Set the credentials and the geocode query,which could be an address or location.
findroute.geocodeservice.GeocodeRequest geocodeRequest = new findroute.geocodeservice.GeocodeRequest();
geocodeRequest.Credentials = new Credentials();
geocodeRequest.Credentials.ApplicationId = ((ApplicationIdCredentialsProvider)map1.CredentialsProvider).ApplicationId;
geocodeRequest.Query = strAddress;
// Now Making the asynchronous Geocode request, using the 'waypoint index' as
// the user state to track this request and allow it to be identified when the response is returned.
geocodeService.GeocodeAsync(geocodeRequest, waypointIndex);
}
これはどのように修正できますか?