mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
37 lines (27 loc) • 1.11 kB
text/typescript
import * as vd from "virtual-dom";
import {Container, Navigator} from "../Viewer";
import {ComponentService, Component, IComponentConfiguration} from "../Component";
export class BackgroundComponent extends Component<IComponentConfiguration> {
public static componentName: string = "background";
constructor(name: string, container: Container, navigator: Navigator) {
super(name, container, navigator);
}
protected _activate(): void {
this._container.domRenderer.render$
.next({name: this._name, vnode: this._getBackgroundNode("The viewer can't display the given image.")});
}
protected _deactivate(): void {
return;
}
protected _getDefaultConfiguration(): IComponentConfiguration {
return {};
}
private _getBackgroundNode(notice: string): vd.VNode {
// todo: add condition for when to display the DOM node
return vd.h("div.BackgroundWrapper", {}, [
vd.h("p", {textContent: notice}, []),
]);
}
}
ComponentService.register(BackgroundComponent);
export default BackgroundComponent;