25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

81 satır
2.1 KiB

  1. <template>
  2. <div class="w-full h-screen">
  3. <section class="UI bg-red-800">
  4. <button @click="getAnotations()">
  5. get annotations
  6. </button>
  7. <button v-for="tool in tools" :key="tool" class="m-4 p-4" @click="anno.setDrawingTool(tool)">
  8. {{ tool }}
  9. </button>
  10. </section>
  11. <img id="annotorious" src="https://files.erudi.fr/virages/snake.jpg">
  12. </div>
  13. </template>
  14. <script>
  15. import { Annotorious } from '@annotorious/openseadragon'
  16. import SelectorPack from '@annotorious/selector-pack'
  17. import BetterPolygon from '@annotorious/better-polygon'
  18. import '@annotorious/dist/annotorious.min.css'
  19. export default {
  20. data() {
  21. return {
  22. anno: null,
  23. tools: ['rect', 'polygon', 'point', 'circle', 'ellipse', 'freehand']
  24. }
  25. },
  26. mounted() {
  27. this.initAnno()
  28. },
  29. methods: {
  30. initAnno() {
  31. this.anno = new Annotorious({
  32. image: document.getElementById('annotorious'),
  33. widgets: ['COMMENT']
  34. })
  35. BetterPolygon(this.anno)
  36. SelectorPack(this.anno, {
  37. tools: this.tools
  38. })
  39. this.anno.setDrawingTool('polygon')
  40. this.anno.on('createAnnotation', function (annotation) {
  41. console.log('Created annotation', annotation)
  42. })
  43. this.anno.on('createSelection', function (selection) {
  44. console.log('Created selection', selection)
  45. })
  46. this.anno.on('deleteAnnotation', function (annotation) {
  47. console.log('Delete annotation', annotation)
  48. })
  49. this.anno.on('mouseEnterAnnotation', function (annotation, element) {
  50. console.log('Mouse ENTERED annotation', annotation)
  51. })
  52. this.anno.on('selectAnnotation', function (annotation, element) {
  53. console.log('Select annotation', annotation)
  54. })
  55. this.anno.on('cancelSelected', function (selection) {
  56. console.log('UNSELECTED')
  57. })
  58. this.anno.on('clickAnnotation', function (annotation, element) {
  59. console.log('Clicked annotation', annotation)
  60. })
  61. },
  62. getAnotations() {
  63. const annotations = this.anno.getAnnotations()
  64. console.log(annotations)
  65. }
  66. }
  67. }
  68. </script>