forked from jupyter-widgets/ipyleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVectorTileLayer.ts
80 lines (70 loc) · 2.17 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
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { 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: true,
visible: true,
opacity: 1.0,
};
}
}
export class LeafletVectorTileLayerView extends LeafletLayerView {
obj: VectorGrid.Protobuf;
async create_obj() {
let options = {
...this.get_options(),
};
options['rendererFactory'] = L.canvas.tile;
let x: any = options['vectorTileLayerStyles'];
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'] = {};
}
}
this.obj = L.vectorGrid.protobuf(this.model.get('url'), options);
this.model.on('msg:custom', this.handle_message.bind(this));
}
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();
}
}
}