You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
450 B

<template>
<div class="marsMap-container">
<MarsMap
:url="configUrl"
:options="mapOptions"
map-key="test"
@onload="marsOnload"
/>
</div>
</template>
<script setup>
import MarsMap from "@/components/mars-work/mars-map.vue";
import mapOptions from "../mapOptions";
const configUrl = "lib/config/config.json";
const marsOnload = (map) => {};
</script>
<style scoped>
.marsMap-container {
height: 100%;
}
</style>