forked from 3liz/lizmap-javascript-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeasure_tool_custom_style.js
39 lines (37 loc) · 1.42 KB
/
measure_tool_custom_style.js
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
lizMap.events.on({
minidockopened : e => {
if(e.id === "measure"){
// Define the stroke color for all measure tools in `customStrokeColor`
// or you are free to set style rules individually in `customSymbolizer`
const customStrokeColor = '#0000ff';
const customSymbolizer = {
"Point": {
pointRadius: 4,
graphicName: "square",
fillColor: "white",
fillOpacity: 1,
strokeWidth: 1,
strokeOpacity: 1,
strokeColor: customStrokeColor
},
"Line": {
strokeWidth: 3,
strokeOpacity: 1,
strokeColor: customStrokeColor,
strokeDashstyle: "dash"
},
"Polygon": {
strokeWidth: 2,
strokeOpacity: 1,
strokeColor: customStrokeColor,
strokeDashstyle: "dash",
fillColor: "white",
fillOpacity: 0.3
}
};
for (const measureControl of lizMap.map.getControlsByClass('OpenLayers.Control.Measure')) {
measureControl.handlerOptions.layerOptions.styleMap.styles.default.rules[0].symbolizer = customSymbolizer;
}
}
}
});