@@ -1,5 +1,6 @@
|
||||
package com.mogo.eagle.core.function.api.base
|
||||
|
||||
import android.util.Log
|
||||
import com.alibaba.android.arouter.facade.template.IProvider
|
||||
|
||||
/**
|
||||
@@ -8,5 +9,17 @@ import com.alibaba.android.arouter.facade.template.IProvider
|
||||
* 处理没有页面的服务及交互逻辑的提供者
|
||||
*/
|
||||
interface IMoGoFunctionServerProvider : IProvider {
|
||||
/**
|
||||
* 功能模块唯一标识
|
||||
*
|
||||
* @return 功能模块名称
|
||||
*/
|
||||
val functionName: String
|
||||
|
||||
/**
|
||||
* 功能销毁回调
|
||||
*/
|
||||
fun onDestroy() {
|
||||
Log.d("IMoGoFunctionServerProvider", "onDestroy")
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.mogo.eagle.core.function.api.map.hd
|
||||
|
||||
/**
|
||||
*@author xiaoyuzhou
|
||||
*@date 2021/10/15 12:18 下午
|
||||
* 地图样式改变回调监听
|
||||
*/
|
||||
interface IMoGoMapStyleChangeListener {
|
||||
|
||||
/**
|
||||
* 地图样式改变回调监听
|
||||
*/
|
||||
fun onMapStyleModeChange(styleMode: Int)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user