Hi I am hoping this is a newbie issue however I am having issues with SketchEditor working on my touch screen. Using the mouse works fine as per the attached video. I can see when I call the method (example at bottom) via touch the editor is started however the MapView does not recognize the interaction. All other aspects within the application work fine via touch ie the Mil Symbols etc. What newbie mistake am I making.
/**
* Clear selection of any graphic in the graphics overlay and start a new
* rectangle sketch.
*/
@FXML
private void handleRectangleButtonClicked() {
graphicsOverlay.clearSelection();
sketchEditor.start(SketchCreationMode.RECTANGLE);
}