File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import matchIcon from '@/utils/matchIcon'
44import OptionButtons from ' @/components/OptionButtons.vue'
55import TaskProgress from ' @/components/TaskProgress.vue'
66import StreetProjectTask from ' @/components/StreetProjectTask.vue'
7+ import StreetProjectTaskPanoramax from ' @/components/StreetProjectTaskPanoramax.vue'
78import TutorialCompletionCard from ' ./TutorialCompletionCard.vue'
89import { isDefined } from ' @/utils/common'
910
@@ -42,6 +43,7 @@ interface Tutorial {
4243export default defineComponent ({
4344 components: {
4445 StreetProjectTask ,
46+ StreetProjectTaskPanoramax ,
4547 OptionButtons ,
4648 TaskProgress ,
4749 TutorialCompletionCard ,
@@ -215,8 +217,17 @@ export default defineComponent({
215217 </v-row >
216218 <v-row justify =" center" >
217219 <v-col >
220+ <street-project-task-panoramax
221+ v-if =" taskId && tutorial && tutorial.tileServer?.name == 'panoramax'"
222+ :key =" taskId"
223+ :taskId =" taskId"
224+ :endpoint =" tutorial.tileServer?.url"
225+ :containerId =" 'panoramax_tutorial'"
226+ @dataloading =" (e) => (isLoading = e)"
227+ style =" position : relative ; height : calc (70vh - 390px )"
228+ />
218229 <street-project-task
219- v-if =" taskId && tutorial"
230+ v-else- if =" taskId && tutorial"
220231 :key =" taskId"
221232 :taskId =" taskId"
222233 :containerId =" 'mapillary_tutorial'"
You can’t perform that action at this time.
0 commit comments