annotorious / annotorious-v2-plugins

Plugins compatible with the RecogitoJS, Annotorious and AnnotoriousOSD annotation libraries
BSD 3-Clause "New" or "Revised" License
28 stars 20 forks source link

Start Annotorious Better Polygon with Single Click #33

Closed hsellik closed 1 year ago

hsellik commented 1 year ago

Hi,

The Better Polygon Readme says that it can be started with a single click: Optionally start drawing by drag or single click

How to enable startOnSingleClick?

hsellik commented 1 year ago

Found an example from annotorious-better-polygon/public/index.html, didn't realize it's Annotorious config.

var anno = Annotorious.init({
          image: 'hallstatt',
          drawOnSingleClick: true,
          crosshair: true,
          allowEmpty: true
});

After adding drawOnSingleClick: true to Annotorious config, it works as intended.