Hi,
I'm trying to figure out if there is a way to get only airports from the FindNearBy service? However, using the Acxiom dataset, I can't seem to figure out how the limit it to airports only. It seems to return everthing in that category (Airports, Flying Fields, and Services). Here is my code:
findNearbySpec.DataSourceName = "Acxiom.US.SIC_E";
findNearbySpec.Distance = 40.0f;
findNearbySpec.LatLong = new LatLong();
findNearbySpec.LatLong.Latitude = dLatitude;
findNearbySpec.LatLong.Longitude = dLongitude;
findNearbySpec.Filter = new FindFilter();
findNearbySpec.Filter.EntityTypeName = "SIC4581"; //Airports, Flying Fields, and Services
I'm esentially trying to duplicate FindNearBy functionality from MapPoint 2004 application with only "Major - Airports" place category enabled.
Any ideas?
Thanks!