二维地图 使用百度地图作为底图 绘制要素坐标是在中国 结果坐标显示在 非洲坐标大西洋里而且 无论绘制多少个点 都会在这一个地方展示 而且百度地图 字体有些模糊是什么原因
CallOut callOut = new CallOut(this);
callOut.setStyle(CalloutAlignment.BOTTOM);
callOut.setCustomize(true);
callOut.setLocation(pnt.getX(), pnt.getY());
ImageView imageView = new ImageView(this);
imageView.setMaxWidth(40);
imageView.setMaxHeight(40);
callOut.setContentView(imageView);
String finalFileName = fileName;
ImageUtils.image(imageView, finalFileName);
dataBinding.mapView.addCallout(callOut, "测试");