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?