地图依赖重构

This commit is contained in:
wangcongtao
2020-12-13 11:04:44 +08:00
parent 6fee5deaca
commit 564b1356a1
59 changed files with 1033 additions and 626 deletions

View File

@@ -2,8 +2,6 @@ package com.mogo.map;
import android.content.Context;
import com.mogo.map.impl.amap.AMapViewHandler;
public
/**
* @author congtaowang
@@ -39,11 +37,11 @@ class MogoMapViewInstanceHandler implements IMogoMapViewInstanceHandler {
@Override
public void createMapViewInstance( Context context ) {
AMapViewHandler.createMapView( context );
MogoMapDelegateFactory.createMapViewInstance( context );
}
@Override
public void destroy() {
AMapViewHandler.destroy();
MogoMapDelegateFactory.destroy();
}
}