This commit is contained in:
wangcongtao
2020-12-08 14:08:53 +08:00
840 changed files with 31903 additions and 11168 deletions

View File

@@ -35,7 +35,12 @@ public enum EnumMapUI {
/**
* 夜晚模式
*/
Type_AUTO_LIGHT_Night( 5, 3 );
Type_AUTO_LIGHT_Night( 5, 3 ),
/**
* 自研地图的VR模式
*/
Type_VR( 0, 0 );
private int next;
private int code;

View File

@@ -50,8 +50,8 @@ public interface IMogoMapUIController {
/**
* 将地图移动至当前位置
*/
default void moveToCenter( MogoLatLng latLng ){
moveToCenter(latLng, false);
default void moveToCenter( MogoLatLng latLng ) {
moveToCenter( latLng, false );
}
/**
@@ -225,7 +225,16 @@ public interface IMogoMapUIController {
/**
* 切换地图视图视角
*
* @param bearing
*/
void changeBearing(float bearing);
void changeBearing( float bearing );
default void setAnchorScale( float x, float y ) {
}
default void setAnchorRate( float rate ) {
}
}