選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

59 行
1.5 KiB

  1. <template>
  2. <div>
  3. <main class="inline-block bg-white bg-opacity-50 m-10 relative z-10 top-0 left-0">
  4. <!-- <ZoomRect /> -->
  5. <ZoomPoint :markers="story[0].markers" />
  6. </main>
  7. <aside class="fixed top-0 left-0 w-screen h-screen" ref="openSeadragonElt"></aside>
  8. </div>
  9. </template>
  10. <script setup lang="ts">
  11. import OpenSeadragon from 'openseadragon'
  12. import { onMounted, ref, provide } from 'vue'
  13. import story from '@/assets/story.json'
  14. import Poulpatore from '../public/deepzoom/poulpatore/dz/info.json'
  15. import Vignemale from '../public/deepzoom/vignemale/dz/info.json'
  16. const Cells = 'https://verrochi92.github.io/axolotl/data/W255B_0.dzi'
  17. import ZoomRect from './components/tools/ZoomRect.vue'
  18. import ZoomPoint from './components/tools/ZoomPoint.vue'
  19. const Viewer = ref()
  20. const openSeadragonElt = ref()
  21. provide('Viewer', Viewer)
  22. const initViewer = () => {
  23. Viewer.value = OpenSeadragon({
  24. element: openSeadragonElt.value,
  25. animationTime: 0.4,
  26. prefixUrl: 'https://openseadragon.github.io/openseadragon/images/',
  27. showNavigator: true,
  28. sequenceMode: true,
  29. tileSources: Poulpatore,
  30. showNavigationControl: true,
  31. drawer: 'canvas',
  32. preventDefaultAction: true,
  33. homeFillsViewer: true,
  34. visibilityRatio: 1,
  35. crossOriginPolicy: 'Anonymous',
  36. showZoomControl: true,
  37. })
  38. }
  39. // on hover of openseadragon element, zoom to the center of the image
  40. onMounted(() => {
  41. initViewer()
  42. })
  43. </script>
  44. <style scoped>
  45. button {
  46. @apply border-2 border-black px-4 py-2 rounded-xl;
  47. }
  48. </style>