修改vip变灯marker在vr模式下的显示问题
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.mogo.module.common.drawer.marker;
|
||||
|
||||
import android.view.View;
|
||||
|
||||
import com.mogo.map.marker.IMogoInfoWindowAdapter;
|
||||
import com.mogo.map.marker.IMogoMarker;
|
||||
|
||||
/**
|
||||
* 简单marker适配器
|
||||
*
|
||||
* @author tongchenfei
|
||||
*/
|
||||
public class SimpleWindow3DAdapter implements IMogoInfoWindowAdapter {
|
||||
|
||||
public View icon;
|
||||
public SimpleWindow3DAdapter(View icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
@Override
|
||||
public View getInfoWindow(IMogoMarker marker) {
|
||||
return icon;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user