16 lines
242 B
Java
16 lines
242 B
Java
package com.mogo.map;
|
|
|
|
import android.content.Context;
|
|
|
|
public
|
|
/**
|
|
* @author congtaowang
|
|
* @since 2020/9/10
|
|
*
|
|
* 描述
|
|
*/
|
|
interface IMogoMapViewInstanceHandler extends IDestroyable {
|
|
|
|
void createMapViewInstance( Context context );
|
|
}
|