Rainer Simon
Rainer Simon
Hi Debiprasad, This would be absolutely amazing! Indeed there's a need for more documentation & examples - do let me know when you write something & many thanks in advance!...
Looks good overall. But you may be calling setAnnotations() before Annotorious has loaded. Try changing ``` javascript $(function () { setAnnotations(); }); ``` to ``` $(document).ready(function() { setAnnotations(); }); ```...
Hi, the way it’s implemented right now, Annotorious uses the image SRC attribute as the main identifier to link annotations to images. I.e. an annotation will attach to an image,...
I'm not sure I understand what your problem is. - You know how to display the image on the Web page, correct? - You know how to fetch the annotations...
Hi, which site are you testing on? Seems to work on e.g. http://annotorious.github.io/demos/hello-world.html
Hm. Weird. I can't reproduce this. Works on Chromium (50.0.2661.102, 64bit) and FF 47.0. Without being able to reproduce it, the only way to debug, I'm afraid, will be to...
Hi! This place is fine for filing the issue ;-) It's been on my list for a while to make selections move-/resizable after creation (and during 'edit' mode); but I...
Hi, /src/annotorious.js is not built version - it's the entry point source file into the whole project. Can you grab from here? https://github.com/annotorious/annotorious.github.io/tree/master/latest The relevant files would be `annotorious.css` and...
Hi Darryn, that's a cool showcase! I tried dropping your plugin init code into [the OpenSeadragon test page](https://github.com/annotorious/annotorious/blob/master/test/openseadragon/test.html) and this did, in fact, work. It looks as if you've only...
To be honest, I didn't look into mobile-compatibility with OpenLayers at all. There's definitely hidden potential for Yak-shaving for anyone looking into it, I'd say. Implementing getAnnotationsAt is probably the...