diff --git a/public/data.json b/public/data.json
deleted file mode 100644
index b4ba33b..0000000
--- a/public/data.json
+++ /dev/null
@@ -1,32 +0,0 @@
-[
- {
- "id": 0,
- "order": 0,
- "title": "Poulpatore",
- "url": "https://verrochi92.github.io/axolotl/data/W255B_0.dzi",
- "story": [
- {
- "id": 0,
- "zoom": 4,
- "x": 0.5,
- "y": 0.7,
- "annotation": "lorem ipsum dolor sit amet"
- },
- {
- "id": 1,
- "zoom": 3,
- "x": 0.2,
- "y": 0.3,
- "annotation": "second annotation"
- },
- {
- "id": 2,
- "zoom": 5,
- "x": 0.1,
- "y": 0.1,
- "annotation": "third"
- },
- ]
- }]
- }
-]
\ No newline at end of file
diff --git a/src/App.vue b/src/App.vue
index e61f582..1a046fb 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,7 +2,7 @@
@@ -12,6 +12,8 @@
import OpenSeadragon from 'openseadragon'
import { onMounted, ref, provide } from 'vue'
+import story from '@/assets/story.json'
+
import Poulpatore from '../public/deepzoom/poulpatore/dz/info.json'
import Vignemale from '../public/deepzoom/vignemale/dz/info.json'
const Cells = 'https://verrochi92.github.io/axolotl/data/W255B_0.dzi'
@@ -31,7 +33,7 @@ const initViewer = () => {
prefixUrl: 'https://openseadragon.github.io/openseadragon/images/',
showNavigator: true,
sequenceMode: true,
- tileSources: Cells,
+ tileSources: Poulpatore,
showNavigationControl: true,
drawer: 'canvas',
preventDefaultAction: true,
diff --git a/src/assets/story.json b/src/assets/story.json
new file mode 100644
index 0000000..774f2cf
--- /dev/null
+++ b/src/assets/story.json
@@ -0,0 +1,36 @@
+[
+ {
+ "id": 0,
+ "title": "Poulpatore",
+ "url": "https://verrochi92.github.io/axolotl/data/W255B_0.dzi",
+ "markers": [
+ {
+ "order": 0,
+ "position": {
+ "x": 0.2,
+ "y": 0.2
+ },
+ "zoom": 4,
+ "annotation": "lorem ipsum dolor sit amet"
+ },
+ {
+ "order": 1,
+ "position": {
+ "x": 0.2,
+ "y": 0.3
+ },
+ "zoom": 3,
+ "annotation": "second annotation"
+ },
+ {
+ "order": 2,
+ "position": {
+ "x": 0.1,
+ "y": 0.1
+ },
+ "zoom": 7,
+ "annotation": "third"
+ }
+ ]
+ }
+]
diff --git a/src/components/tools/ZoomPoint.vue b/src/components/tools/ZoomPoint.vue
index 179755b..1cb000b 100644
--- a/src/components/tools/ZoomPoint.vue
+++ b/src/components/tools/ZoomPoint.vue
@@ -1,9 +1,11 @@
diff --git a/src/types/virages.d.ts b/src/types/virages.d.ts
new file mode 100644
index 0000000..d02b653
--- /dev/null
+++ b/src/types/virages.d.ts
@@ -0,0 +1,13 @@
+export interface Marker {
+ order: number
+ position: OpenSeadragon.Point
+ zoom: number
+ annotation: string
+}
+
+export interface Story {
+ id: number
+ title: string
+ url: string
+ markers: Marker[]
+}