[6.2.4]录包增加高精地图截图

This commit is contained in:
xuxinchao
2023-12-04 14:45:33 +08:00
parent 7d040d2ae0
commit f1313600d9
6 changed files with 91 additions and 4 deletions

View File

@@ -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)
}
}
}