出现红块 后地图就很卡 拖动就容易闪退
在线天地图,刚开始不出现,基本上用了十几分钟后必然出现。 这十几分钟每2秒定位设置下面的参数
Point2D point2D = new Point2D(longitude, latitude); m_mapControl.getMap().setScale(5.538327991427579E-5); // m_mapControl.panTo(point2D, 300); m_mapControl.getMap().setCenter(point2D); m_mapControl.getMap().refresh(); final CallOut calloutLocation = new CallOut(mapView.getContext()); calloutLocation.setStyle(CalloutAlignment.BOTTOM); calloutLocation.setLocation(longitude, latitude); calloutLocation.setCustomize(true); // 设置自定义背景 ImageView imageView = new ImageView(m_mapControl.getContext()); // 显示起点 imageView.setBackgroundResource(R.mipmap.position); calloutLocation.setContentView(imageView); mapView.addCallout(calloutLocation, "Locate");