提交 5a797032 编写于 作者: KK's avatar KK

地图引擎(解决不同环境引擎名称不同)

上级 1bf72b36
import MDViewEngineBase from './md-view-engine-base';
/**
* 实体移动端地图视图界面引擎
*
* @export
* @class MobMapViewEngine
* @extends {MDViewEngineBase}
*/
export default class MobMapViewEngine extends MDViewEngineBase {
/**
* 地图部件
*
* @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;
}
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册