优化显示逻辑

This commit is contained in:
wangcongtao
2021-03-09 10:05:49 +08:00
parent 76f0095dd7
commit 731ffde5aa
12 changed files with 219 additions and 110 deletions

View File

@@ -362,4 +362,21 @@ public class MogoMapUIController implements IMogoMapUIController {
}
return null;
}
@Override
public String getMarkerInfoResName( String speedVal ) {
initDelegate();
if ( mDelegate != null ) {
return mDelegate.getMarkerInfoResName( speedVal );
}
return null;
}
@Override
public void setMarkerInfoResName( String speedVal, String val ) {
initDelegate();
if ( mDelegate != null ) {
mDelegate.setMarkerInfoResName( speedVal, val );
}
}
}