MapView rendering with tiles missing with an “x” in the center

前端 未结 9 1245
醉梦人生
醉梦人生 2020-11-28 14:01

This is very, very strange. I\'ve never seen anything like it. At the time I am took this screenshot, I\'m not loading any overlays. First, I thought it was my internet conn

9条回答
  •  -上瘾入骨i
    2020-11-28 14:24

    Street view is always considered as the default option. The problem arises when we use both setStreetView(true) and setSatellite(true) at the same time. Problem will be solved like this

        if(mapView.isSatellite()){
            mapView.setSatellite(false);
                }else{
                mapView.setStreetView(false);
                mapView.setSatellite(true);
                }
    

    I hope that will help

提交回复
热议问题