I am trying to figure out how the draw object behaving. When we have multiple objects that are working on one map and we set one to be enabled, do all the other ones disable? It seems to be behaving that way, but I didn't find anything in the API about it. MyMeasureObject = new Draw(map)
{
LineSymbol = MeasureCanvas.Resources["DrawLineSymbol"] as LineSymbol,
FillSymbol = MeasureCanvas.Resources["DrawFillSymbol"] as FillSymbol
};
So for example here, lets say I enable MyMeasureObject. Any other draw objects that were enabled on map will no long be active. Is that correct? Are they supposed to go to disabled?