drone.vue
1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
<div>
<l-marker
ref="markersRef"
:lat-lng="[latitude, longitude]"
@click="clickDrone"
>
<l-icon
:icon-size="iconSize"
:icon-anchor="[20, 20]"
:icon-url="icon"
></l-icon>
</l-marker>
<l-polyline :lat-lngs="drone.polyline.latlngs" :color="drone.polyline.color"></l-polyline>
</div>
</template>
<script>
import { mapGetters } from 'vuex';
export default {
head() {
return {
title: 'Drone',
meta: [
{
hid: 'database',
name: 'Descriptions',
content: 'DroneWeb-Content',
},
],
};
},
props: {
latitude: {
type: Number,
default: 0,
},
longitude: {
type: Number,
default: 0,
},
icon: {
default: null,
},
},
data() {
return {
drone: {
latitude: 37.2430125,
longitude: 127.0811054,
polyline: {
latlngs: [],
color: 'red',
},
},
};
},
mounted() {
this.$nextTick(() => {
// console.log('hi', this.$refs.markersRef)
// this.markerObjects = this.$refs.markersRef.map(ref => ref.mapObject);
// console.log(this.markerObjects)
});
},
computed: {
...mapGetters('Drone/Map', {
getZoomLevel: 'getZoomLevel',
}),
iconSize() {
if (this.getZoomLevel == null) return [40, 40];
return [this.getZoomLevel * 2.2, this.getZoomLevel * 2.2];
},
},
created() {
// this.makeDronePath();
},
methods: {
clickDrone() {
this.$emit('clickDrone');
},
makeDronePath() {
// setTimeout(() => {
// this.drone.latitude += 0.00005;
// // this.drone.longitude += 0.00005;
// this.drone.polyline.latlngs.push([this.drone.latitude, this.drone.longitude]);
// this.makeDronePath();
// }, 500);
},
},
};
</script>