bugfix: UI-393

This commit is contained in:
wangcongtao
2020-03-02 17:53:48 +08:00
parent fe46c48447
commit 85d0aae48b
5 changed files with 43 additions and 18 deletions

View File

@@ -187,4 +187,11 @@ public class MogoMapUIController implements IMogoMapUIController {
mDelegate.showBounds( lonLats, bound );
}
}
@Override
public void forceRender() {
if ( mDelegate != null ) {
mDelegate.forceRender();
}
}
}