# 七.events
# 1.altKeyOnly、click、pointerMove
查看代码详情
<template>
<div>
<div ref="map" class="map"></div>
<form class="form-inline">
<label for="type">动作类型 </label>
<select ref="type" class="form-control">
<option value="click" selected>点击</option>
<option value="singleclick">单击</option>
<option value="pointermove">悬停</option>
<option value="altclick">Alt+Click</option>
<option value="none">无</option>
</select>
<span id="status"> 0 selected features</span>
</form>
</div>
</template>
<script>
export default {
mounted() {
let {
format: { GeoJSON },
Map,
View,
layer: { Vector: VectorLayer },
source: { Vector: VectorSource },
style: { Fill, Stroke, Style },
interaction: { Select },
events: {
condition: { altKeyOnly, click, pointerMove },
},
} = ol;
const style = new Style({
fill: new Fill({
color: "#eeeeee",
}),
});
const vector = new VectorLayer({
source: new VectorSource({
url: "https://openlayers.org/data/vector/ecoregions.json",
format: new GeoJSON(),
}),
background: "white",
style: function (feature) {
const color = feature.get("COLOR") || "#eeeeee";
style.getFill().setColor(color);
return style;
},
});
const map = new Map({
layers: [vector],
target: this.$refs.map,
view: new View({
center: [12579156, 3274244],
zoom: 2,
}),
});
let select = null;
const selected = new Style({
fill: new Fill({
color: "#eeeeee",
}),
stroke: new Stroke({
color: "rgba(255, 255, 255, 0.7)",
width: 2,
}),
});
function selectStyle(feature) {
const color = feature.get("COLOR") || "#eeeeee";
selected.getFill().setColor(color);
return selected;
}
const selectSingleClick = new Select({ style: selectStyle });
const selectClick = new Select({
condition: click,
style: selectStyle,
});
const selectPointerMove = new Select({
condition: pointerMove,
style: selectStyle,
});
const selectAltClick = new Select({
style: selectStyle,
condition: function (mapBrowserEvent) {
return click(mapBrowserEvent) && altKeyOnly(mapBrowserEvent);
},
});
const selectElement = this.$refs.type;
const changeInteraction = function () {
if (select !== null) {
map.removeInteraction(select);
}
const value = selectElement.value;
if (value == "singleclick") {
select = selectSingleClick;
} else if (value == "click") {
select = selectClick;
} else if (value == "pointermove") {
select = selectPointerMove;
} else if (value == "altclick") {
select = selectAltClick;
} else {
select = null;
}
if (select !== null) {
map.addInteraction(select);
select.on("select", function (e) {
document.getElementById("status").innerHTML =
" " +
e.target.getFeatures().getLength() +
" selected features (last operation selected " +
e.selected.length +
" and deselected " +
e.deselected.length +
" features)";
});
}
};
selectElement.onchange = changeInteraction;
changeInteraction();
},
};
</script>
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# 2.pointermove
查看代码详情
<template>
<div>
<div ref="map" class="map"></div>
<span ref="status"> </span>
</div>
</template>
<script>
export default {
mounted() {
let {
format: { GeoJSON },
Map,
View,
layer: { Vector: VectorLayer },
source: { Vector: VectorSource },
style: { Fill, Stroke, Style },
} = ol;
const style = new Style({
fill: new Fill({
color: "#eeeeee",
}),
});
const vector = new VectorLayer({
source: new VectorSource({
url: "https://openlayers.org/data/vector/ecoregions.json",
format: new GeoJSON(),
}),
background: "white",
style: function (feature) {
const color = feature.get("COLOR") || "#eeeeee";
style.getFill().setColor(color);
return style;
},
});
const map = new Map({
layers: [vector],
target: this.$refs.map,
view: new View({
center: [12579156, 3274244],
zoom: 2,
}),
});
const selectStyle = new Style({
fill: new Fill({
color: "#eeeeee",
}),
stroke: new Stroke({
color: "rgba(255, 255, 255, 0.7)",
width: 2,
}),
});
const status = this.$refs.status;
let selected = null;
map.on("pointermove", function (e) {
if (selected !== null) {
selected.setStyle(undefined);
selected = null;
}
map.forEachFeatureAtPixel(e.pixel, function (f) {
selected = f;
selectStyle.getFill().setColor(f.get("COLOR") || "#eeeeee");
f.setStyle(selectStyle);
return true;
});
if (selected) {
status.innerHTML = selected.get("ECO_NAME");
} else {
status.innerHTML = " ";
}
});
},
};
</script>
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
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