[6.2.4]录包增加高精地图截图
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.mogo.eagle.core.function.call.map
|
||||
|
||||
import android.graphics.Bitmap
|
||||
import com.mogo.eagle.core.function.api.map.deva.IMoGoMapScreenListener
|
||||
import com.mogo.eagle.core.function.call.base.CallerBase
|
||||
|
||||
/**
|
||||
* 高精地图屏幕截图回调监听管理
|
||||
*/
|
||||
object CallerMapScreenListenerManager: CallerBase<IMoGoMapScreenListener>() {
|
||||
|
||||
/**
|
||||
* 高精地图屏幕截图回调
|
||||
*/
|
||||
fun invokeMapScreen(bitmap: Bitmap){
|
||||
M_LISTENERS.forEach{
|
||||
val listener = it.value
|
||||
listener.onMapScreen(bitmap)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user