src/components/GuidingLayer.js

goog.module('gep.components.GuidingLayer');

const AbstractLayer = goog.require('gep.components.AbstractLayer');
const {LayerType} = goog.require('gep.provider.LayerProvider');

/**
 * Component that controls the display of the guiding layer and its contents.
 * @extends {AbstractLayer}
 */
class GuidingLayer extends AbstractLayer
{
    constructor()
    {
        super(LayerType.GUIDING);
    }

    /**
     * Component is ready and had loaded all dependencies (inherit method waitFor and sub components).
     * @inheritDoc
     */
    onInit()
    {
        super.onInit();
        this.initContentElements_();
    }
}

exports = GuidingLayer;