forked from jupyter-widgets/ipyleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVectorTileLayer.ts
147 lines (130 loc) · 4.04 KB
/
VectorTileLayer.ts
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { LeafletMouseEvent, VectorGrid } from 'leaflet';
import L from '../leaflet';
import { LeafletLayerModel, LeafletLayerView } from './Layer';
export class LeafletVectorTileLayerModel extends LeafletLayerModel {
defaults() {
return {
...super.defaults(),
_view_name: 'LeafletVectorTileLayerView',
_model_name: 'LeafletVectorTileLayerModel',
url: '',
vectorTileLayerStyles: {},
min_zoom: 0,
max_zoom: 18,
min_native_zoom: null,
max_native_zoom: null,
interactive: false,
visible: true,
opacity: 1.0,
rendererFactory: L.svg.tile,
getFeatureId: null,
};
}
}
export class LeafletVectorTileLayerView extends LeafletLayerView {
obj: VectorGrid.Protobuf;
async set_vector_tile_layer_styles(options: any) {
if ('layerStyles' in options) {
let x: any = options['layerStyles'];
options['vectorTileLayerStyles'] = x;
if (typeof x === 'string') {
try {
let blobCode = `const jsStyle=${x}; export { jsStyle };`;
const blob = new Blob([blobCode], { type: 'text/javascript' });
const url = URL.createObjectURL(blob);
const module = await import(/* webpackIgnore: true*/ url);
const jsStyle = module.jsStyle;
options['vectorTileLayerStyles'] = jsStyle;
} catch (error) {
options['vectorTileLayerStyles'] = {};
}
}
}
return options;
}
async create_obj() {
let options = {
...this.get_options(),
};
if ('featureId' in options) {
let idVar = options['featureId'];
options['getFeatureId'] = function (feat: any) {
return feat.properties[idVar];
};
}
if ('renderer' in options) {
let r: any = options['renderer'];
if (r === 'canvas') {
options['rendererFactory'] = L.canvas.tile;
} else {
options['rendererFactory'] = L.svg.tile;
}
}
options = await this.set_vector_tile_layer_styles(options);
this.obj = L.vectorGrid.protobuf(this.model.get('url'), options);
this.model.on('msg:custom', this.handle_message.bind(this));
if (this.model.get('visible') == false) {
this.obj.setOpacity(0);
}
this.model.on('change:layer_styles', async () => {
let options = {
...this.get_options(),
};
options = await this.set_vector_tile_layer_styles(options);
this.obj.options.vectorTileLayerStyles = options['vectorTileLayerStyles'];
if (this.model.get('visible') == false) {
this.obj.setOpacity(0);
}
this.obj.redraw();
});
this.model.on('change:feature_style', () => {
const feature_style = this.model.get('feature_style');
const reset = feature_style['reset'];
if (reset) {
this.obj.resetFeatureStyle(feature_style['id']);
} else {
this.obj.setFeatureStyle(
feature_style['id'],
feature_style['layerStyle']
);
}
});
this.obj.on(
'click mouseover mouseout' as any,
(event: LeafletMouseEvent) => {
this.send({
event: 'interaction',
type: event.type,
coordinates: [event.latlng.lat, event.latlng.lng],
properties: event.propagatedFrom.properties,
options: event.propagatedFrom.options,
});
}
);
}
model_events() {
super.model_events();
this.listenTo(this.model, 'change:url', () => {
this.obj.setUrl(this.model.get('url'));
});
this.listenTo(this.model, 'change:opacity', () => {
if (this.model.get('visible')) {
this.obj.setOpacity(this.model.get('opacity'));
}
});
this.listenTo(this.model, 'change:visible', () => {
if (this.model.get('visible')) {
this.obj.setOpacity(this.model.get('opacity'));
} else {
this.obj.setOpacity(0);
}
});
}
handle_message(content: { msg: string }) {
if (content.msg == 'redraw') {
this.obj.redraw();
}
}
}