|
|
@@ -7,7 +7,7 @@
|
|
|
|
|
|
<div class="card-body">
|
|
|
<div class="micro-map-container">
|
|
|
- <IntersectionMapVideos v-if="data.mapData" :mapData="data.mapData" :videoUrls="data.videoUrls || {}" />
|
|
|
+ <IntersectionMap v-if="data.mapData" :mapData="data.mapData" />
|
|
|
</div>
|
|
|
|
|
|
<div class="info-panel">
|
|
|
@@ -37,11 +37,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import IntersectionMapVideos from '@/components/ui/IntersectionMapVideos.vue';
|
|
|
+import IntersectionMap from '@/components/ui/IntersectionMap.vue';
|
|
|
|
|
|
export default {
|
|
|
name: 'IntersectionControlCard',
|
|
|
- components: { IntersectionMapVideos },
|
|
|
+ components: { IntersectionMap },
|
|
|
props: {
|
|
|
data: { type: Object, required: true }
|
|
|
},
|