25 lines
431 B
Vue
25 lines
431 B
Vue
<template>
|
|
<div id="map-wrap">
|
|
<l-map :zoom="17" :center="[50.683666, 10.930899]">
|
|
<l-tile-layer
|
|
url="https://{s}.tile.osm.org/{z}/{x}/{y}.png"
|
|
></l-tile-layer>
|
|
<l-marker :lat-lng="[50.683666, 10.930899]"></l-marker>
|
|
</l-map>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Location'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
#map-wrap {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 60vh;
|
|
}
|
|
</style>
|