forked from nathan-gs/ha-map-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCircleTestPlugin.js
38 lines (33 loc) · 1.06 KB
/
CircleTestPlugin.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
/**
*
* @param L
* @param pluginBase
* @param Logger
*/
export default function(L, pluginBase, Logger) {
return class CircleTestPlugin extends pluginBase {
constructor(map, name, options = {}) {
super(map, name, options);
const { x, y, r, ...circle_options } = options
this.x = x;
this.y = y
this.r = r;
this.circle_options = circle_options;
Logger.debug(`[CircleTestPlugin] Successfully invoked constructor of plugin: ${this.name} with options: ${this.options}`);
}
init() {
Logger.debug(`[CircleTestPlugin] Called init() of plugin: ${this.name}`);
}
renderMap() {
Logger.debug(`[CircleTestPlugin] Called render() of Plugin: ${this.name}`);
this.circle = L.circle([this.x, this.y], { radius: this.r, ...this.circle_options }).addTo(this.map);
}
update() {
Logger.debug(`[CircleTestPlugin] Called update() of Plugin: ${this.name}`);
}
destroy() {
Logger.debug(`[CircleTestPlugin] Called destroy() of Plugin: ${this.name}`);
this.circle.remove();
}
};
}