Hi,
In the application that I am working on we use a satellite image map. On that image map we put a layer of polygons lines and rectangles to display vehicles and display the vehicle states. (I am still not sure there is enough control of the color of the individual polygons colors) So far all is moving forward. Now we want to display an ID number on the vehicle that is visible at ZoomLevel14 to ZoomLevel20 and have it track the vehicle (which is a group of polygons)
I tried to use the RotatingTextStyle example but when I executed this line of code.
VehicleOverlay.Columns.Add(new FeatureSourceColumn(vehicleid + "_name"));
The I could no longer refresh my StaticOverlay no longer had a name. ??? So when I executed this line
the application threw an exception.
winformsMap1.Refresh(winformsMap1.Overlays[
"VehicleOverlay"]);
I have so much to learn. Hope you can help even though this is a very small snipet of code but why would the name of the overlay be altered by adding this columns ?