I didn't succeed in masking placeCategory on map (masking hotel, restaurant, ...).
I used the folowing code with placecategory visible property.
Any one has an explanation ?
Code:axMappointControl1.NewMap(MapPoint.GeoMapRegion.geoMapEurope); map = axMappointControl1.ActiveMap; app = map.Application; for (int i = 1; i < map.PlaceCategories.Count + 1; i++) { object index = i; MapPoint.PlaceCategory placeCategory = map.PlaceCategories.get_Item(ref index) as MapPoint.PlaceCategory; placeCategory.Visible = false; }