Hi Team,
I have successfully integrated the sketchEditor and able to draw polygon, undo, redo etc.
I have saved the geometry info in a Table and I wanted to redraw the saved geometry.
I have below code snippet trying to draw the saved geometry polygon.
fun drawn(geometry: Geometry) {
// create a graphic from the sketch editor geometry
val graphic = Graphic(geometry)
// add the graphic to the graphics overlay
graphicsOverlay.graphics.add(graphic)
}
}
} But I am not seeing the saved polygon. Need your help and insight in this regard.