Hi,
as you can see on the screenshot I joined, I'm editing some features on the edit layer, when the modification of a feature ends I would like to display a balloon on this edited feature (server side because I need some datas from the server) so I added an event on my map:
OnTrackShapeFinished="Map1_TrackShapeFinished"
And in my CS:
protected void Map1_TrackShapeFinished(object sender, EventArgs e)
which is called each time I finish to draw or edit a shape so all is good, I only would like to know how to retrieve the last edited shape in this method so I can open my balloon with datas on it ?
Thank you very much for your help.