delete unused res and opt ui
This commit is contained in:
@@ -808,13 +808,13 @@ public class TanluCardViewFragment extends MvpFragment<IView, Presenter<IView>>
|
||||
*/
|
||||
@Subscribe(threadMode = ThreadMode.MAIN)
|
||||
public void onMarkerInfo(final MarkerInfo event) {
|
||||
Logger.d(TAG, "onMarkerInfo ------------>");
|
||||
Log.d(TAG, "onMarkerInfo ------------>");
|
||||
if (event == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
String poiType = "";
|
||||
if (event.type.equals("1")) { //上报路况 TODO 修改探路
|
||||
if (event.type.equals("1")) { //上报路况
|
||||
mMarkerIcon = BitmapFactory.decodeResource(getResources(), R.drawable.tanlu_marker_block_up);
|
||||
} else if (event.type.equals("2")) { //交通检查 10002
|
||||
poiType = "10002";
|
||||
@@ -826,7 +826,7 @@ public class TanluCardViewFragment extends MvpFragment<IView, Presenter<IView>>
|
||||
mMarkerIcon = BitmapFactory.decodeResource(getResources(), R.drawable.tanlu_marker_block_up);
|
||||
}
|
||||
|
||||
Logger.d(TAG, "onMarkerInfo share onCompleted ------>");
|
||||
Log.d(TAG, "onMarkerInfo share onCompleted ------>");
|
||||
MogoMarkerOptions options = new MogoMarkerOptions()
|
||||
.icon(mMarkerIcon)
|
||||
.latitude(event.lat)
|
||||
|
||||
Reference in New Issue
Block a user