@geogirafe/lib-geoportal
    Preparing search index...

    Hierarchy (View Summary)

    Implements

    Index
    crossSectionState: CrossSectionState
    darkFrontendMode: boolean = false
    displayStyle?: string
    domainLinestring: Feature<LineString>
    domainLineStringLayer: VectorLayer<
        VectorSource<Feature<Geometry, { [x: string]: any }>>,
    >
    domainLinestringSource: VectorSource<Feature<Geometry, { [x: string]: any }>>
    drawInteraction: Draw
    feedbackTemplateHtml?: string
    iconStyle: Style = ...
    isPanelVisible: boolean = false
    linesLayer: VectorLayer<VectorSource<Feature<Geometry, { [x: string]: any }>>>
    linestring: Feature<LineString>
    linestringLength: number = 0.0
    linestringSource: VectorSource<Feature<Geometry, { [x: string]: any }>>
    markersTable: HTMLTableElement | null = null
    measurementsTable: HTMLTableElement | null = null
    modifyInteraction: Modify
    name: string
    panelTitle: string = 'cross-section-settings'
    panelTogglePath: string = 'interface.crossSectionPanelVisible'
    parser: OL3Parser = ...
    pointer: Feature<Point>
    pointerLayer: VectorLayer<VectorSource<Feature<Geometry, { [x: string]: any }>>>
    pointerSource: VectorSource<Feature<Geometry, { [x: string]: any }>>
    points: Feature<Point, { [x: string]: any }>[]
    pointsLayer: VectorLayer<VectorSource<Feature<Geometry, { [x: string]: any }>>>
    pointsSource: VectorSource<Feature<Geometry, { [x: string]: any }>>
    polygon: Feature<Polygon>
    polygonLayer: VectorLayer<VectorSource<Feature<Geometry, { [x: string]: any }>>>
    polygonSource: VectorSource<Feature<Geometry, { [x: string]: any }>>
    rendered: boolean = false
    shadow: ShadowRoot
    styleUrls: string[] = ...
    template: Hole | (() => Hole)
    templateUrl: string = './template.html'
    • get isFullscreenComponent(): boolean

      Whether this Component must stay visible when the App is in Fullscreen Mode. Controlled by the "fullscreen" attribute (default: false).

      Returns boolean

    • Parameters

      • parentNodeName: string
      • elem: Node | null
      • initialElem: Node | null = elem

      Returns Node | null

    • Convert the string in parameter with uHtml and return it. This allows to convert a string with html in a right html object. For example, htmlUnsafe('

      ') will return an html div object.

      Parameters

      • str: string

      Returns Hole

    • In the templates, sometimes for accessibility reasons, we have to support the KeyDown Event In those case, we often juste want to do the same as the click event when Enter or Space is pressed Then this method can be used : it just calls the click event on the same element

      Parameters

      • e: KeyboardEvent

      Returns void