163 lines
3.7 KiB
Vue
163 lines
3.7 KiB
Vue
<template>
|
|
<div v-if="!hasCoords" class="p-4 text-center">
|
|
⏳ Определяем ваше местоположение...
|
|
</div>
|
|
|
|
<YandexMap
|
|
v-else
|
|
v-model="map"
|
|
class="w-full"
|
|
:settings="{ location }"
|
|
style="height: calc(100dvh - 54px)"
|
|
>
|
|
<YandexMapDefaultSchemeLayer />
|
|
<YandexMapDefaultFeaturesLayer />
|
|
|
|
<YandexMapClusterer
|
|
v-model="clusterer"
|
|
:grid-size="64"
|
|
zoom-on-cluster-click
|
|
@true-bounds="trueBounds = $event"
|
|
>
|
|
<YandexMapMarker
|
|
v-for="marker in pickupPoints"
|
|
:key="marker.id"
|
|
position="top-center left-center"
|
|
:settings="{ coordinates: [marker.position.longitude, marker.position.latitude] }"
|
|
@click="centerMap([marker.position.longitude, marker.position.latitude])"
|
|
>
|
|
<div class="marker">
|
|
<Icon name="i-lucide-map-pin" class="marker__icon" />
|
|
</div>
|
|
</YandexMapMarker>
|
|
|
|
<template #cluster="{ length }">
|
|
<div class="cluster fade-in">
|
|
{{ length }}
|
|
</div>
|
|
</template>
|
|
</YandexMapClusterer>
|
|
</YandexMap>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { LngLat, LngLatBounds, YMap } from '@yandex/ymaps3-types'
|
|
import type { YMapLocationRequest } from '@yandex/ymaps3-types/imperative/YMap'
|
|
import type { YMapClusterer } from '@yandex/ymaps3-types/packages/clusterer'
|
|
import { useGeolocation } from '@vueuse/core'
|
|
import { computed, shallowRef } from 'vue'
|
|
import {
|
|
YandexMap,
|
|
YandexMapClusterer,
|
|
YandexMapDefaultFeaturesLayer,
|
|
YandexMapDefaultSchemeLayer,
|
|
YandexMapMarker,
|
|
} from 'vue-yandex-maps'
|
|
|
|
defineProps<{
|
|
pickupPoints: {
|
|
id: string
|
|
address: string
|
|
position: { latitude: number, longitude: number }
|
|
}[]
|
|
}>()
|
|
|
|
const { coords } = useGeolocation()
|
|
const clusterer = shallowRef<YMapClusterer | null>(null)
|
|
const trueBounds = ref<LngLatBounds>([[0, 0], [0, 0]])
|
|
const map = shallowRef<null | YMap>(null)
|
|
|
|
const hasCoords = computed(() => coords.value?.latitude !== Infinity && coords.value?.longitude !== Infinity)
|
|
|
|
const location = ref<YMapLocationRequest>({
|
|
zoom: 2,
|
|
})
|
|
|
|
function centerMap(coordinates: LngLat) {
|
|
location.value = {
|
|
center: coordinates,
|
|
zoom: 18,
|
|
duration: 2500,
|
|
}
|
|
}
|
|
|
|
watch(coords, (newCoords) => {
|
|
if (newCoords && hasCoords.value) {
|
|
location.value = {
|
|
center: [newCoords.longitude, newCoords.latitude],
|
|
zoom: 9,
|
|
duration: 2500,
|
|
}
|
|
}
|
|
}, { once: true })
|
|
|
|
defineExpose({ centerMap, location })
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.marker {
|
|
position: relative;
|
|
background-color: #0f172b;
|
|
border: 1px solid #0f172b;
|
|
border-radius: 12px;
|
|
padding: 6px;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
transition:
|
|
transform 0.2s ease,
|
|
background-color 0.3s ease;
|
|
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
background-color: #1e293b;
|
|
}
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -6px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 6px solid transparent;
|
|
border-right: 6px solid transparent;
|
|
border-top: 6px solid #0f172b;
|
|
filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.15));
|
|
}
|
|
|
|
&__icon {
|
|
color: white;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.cluster {
|
|
background-color: #0f172b;
|
|
color: white;
|
|
border-radius: 50%;
|
|
width: 48px;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
|
|
border: 2px solid #fff;
|
|
transition:
|
|
transform 0.2s ease,
|
|
background-color 0.3s ease;
|
|
|
|
&:hover {
|
|
transform: scale(1.1);
|
|
background-color: #1e293b;
|
|
}
|
|
}
|
|
</style>
|