Sandro Mani
Sandro Mani
Deleting can be done. But changing properties of multiple arbitrary selected nodes can become very complex (say you select a word and a paragraph), and I'm really skeptical whether it...
It should be implementable to allow multi-editing of nodes of the same type. But beyond that it can get very complex.
Cool idea, though which scenario do you see for processing the image _after_ OCR processing?
You should already be able to do this: - Select all images you wish to recognize in the sources pane. This will kinda emulate a multi-page document. - When recognizing,...
Ah I see. One of the plans I have after version 3.2.0 is to introduce a scripting interface (see also #103), I wonder if this would also be best handled...
FWIW, this is caused by jxrlib shipping a guiddef.h which conflicts with the one shipped my mingw-headers.
Would it be an idea to add snapTo result to the returned event? Like handleEvent(evt) { const result = this.snapTo(evt.pixel, evt.coordinate, evt.map); if (result) { evt.coordinate = result.vertex.slice(0, 2); evt.pixel...
My idea was to be able to subclass ol.interaction.Snap and override handleEvent without having to copy the actual implementation, say: class SnapInteraction extends ol.interaction.Snap { handleEvent(evt) { const evt =...
I meant the "new" extended result object which also includes the segment information. Or just adding the segment information directly to the event also works clearly.
Thanks for your feedback!