mob-map-view-engine.ts 1.3 KB
Newer Older
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
import { MobMDViewEngine } from './mob-mdview-engine';

/**
 * 实体移动端地图视图界面引擎
 *
 * @export
 * @class MobMapViewEngine
 * @extends {MobMDViewEngine}
 */
export class MobMapViewEngine extends MobMDViewEngine {

    /**
     * 地图部件
     *
     * @type {*}
     * @memberof MobDataViewEngine
     */
    protected map: any;


    /**
     * Creates an instance of MobDataViewEngine.
     * @memberof MobDataViewEngine
     */
    constructor() {
        super();
    }

    /**
     * 引擎初始化
     *
     * @param {*} [options={}]
     * @memberof MobDataViewEngine
     */
    public init(options: any = {}): void {
        this.map = options.map;
        super.init(options);
    }

    /**
     * 多数据部件
     *
     * @param {string} ctrlName
     * @param {string} eventName
     * @param {*} args
     * @memberof MobDataViewEngine
     */
    public onCtrlEvent(ctrlName: string, eventName: string, args: any): void {
        if (Object.is(ctrlName, 'map')) {
            this.MDCtrlEvent(eventName, args);
        }
        super.onCtrlEvent(ctrlName, eventName, args);
    }

    /**
     * 获取多数据部件
     *
     * @returns {*}
     * @memberof MobDataViewEngine
     */
    public getMDCtrl(): any {
        return this.map;
    }
}