Fixed small bugs, add documentation to query parameters, draft of surveillance cams

This commit is contained in:
Pieter Vander Vennet 2020-11-12 12:18:02 +01:00
parent eb3e2a6c58
commit 5b59d7dbd0
6 changed files with 246 additions and 11 deletions

View file

@ -5,6 +5,7 @@ import EditableTagRendering from "./EditableTagRendering";
import QuestionBox from "./QuestionBox";
import Combine from "../Base/Combine";
import TagRenderingAnswer from "./TagRenderingAnswer";
import State from "../../State";
export class FeatureInfoBox extends UIElement {
private _tags: UIEventSource<any>;
@ -33,8 +34,6 @@ export class FeatureInfoBox extends UIElement {
layerConfig.titleIcons.map(icon => new TagRenderingAnswer(tags, icon)))
.SetClass("featureinfobox-icons");
this._renderings = layerConfig.tagRenderings.map(tr => new EditableTagRendering(tags, tr));
this._questionBox = new QuestionBox(tags, layerConfig.tagRenderings);
}
InnerRender(): string {