I have installed MapPoint 2009 and added a link to the Microsoft MapPoint 16.0 COM component (North America) for my C # project.
If I do the following, I can get a list of all the "places" in 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 that I can only request all the "police stations"?
source
share