Hello,
I was wondering if there was something like a ‘map refreshed’ event whenever the map draws. Looking through the events I haven’t seen something like that, but I could just be missing it.
Thanks,
Dib
Hello,
I was wondering if there was something like a ‘map refreshed’ event whenever the map draws. Looking through the events I haven’t seen something like that, but I could just be missing it.
Thanks,
Dib
Hi Dib,
We don’t have the event for map, but we have an event for overlay.
You should want to use this event:
LayerOverlay layerOverlay = new LayerOverlay();
layerOverlay.Drawn += LayerOverlay_Drawn;
Regards,
Ethan