tags:

views:

158

answers:

1

I have MapPoint 2009 installed and added a reference to the "Microsoft MapPoint 16.0 Object Library (North America)" COM component to my C# project.

If I do the following, I can get a list of all the "places" within a specific city:

var m = new MapPoint.Application();
var map = m.ActiveMap;
MapPoint.FindResults r = map.FindPlaceResults("West Bend, WI");

However, is there a way I can query just all the "Police Stations" only?

A: 

I guess this can't be done with MapPoint 2009.

Chris Pietschmann