我正在Google地图上绘制多边形,效果很好.我需要将该多边形保存为固定比例的位图.我正在使用此代码来做到这一点.
private static List<Point> scalePolygonPoints(List<LatLng> points,float scale,Projection projection) { List<Point> scaledPoints = new ArrayList(points.size()); LatLng polygonCenter = getPolygonCenterPoint(points); Point centerPoint = projection.toScreenLocation(polygonCenter); for (int i=0; i < points.size(); i++) { Point screenPosition = projection.toScreenLocation(points.get(i)); screenPosition.x = (int) (scale * (screenPosition.x - centerPoint.x) + centerPoint.x); screenPosition.y = (int) (scale * (screenPosition.y - centerPoint.y) + centerPoint.y); scaledPoints.add(screenPosition); } return scaledPoints; } private static LatLng getPolygonCenterPoint(List<LatLng> polygonPointsList){ LatLng centerLatLng = null; LatLngBounds.Builder builder = new LatLngBounds.Builder(); for(int i = 0; i < polygonPointsList.size() ; i++) { builder.include(polygonPointsList.get(i)); } LatLngBounds bounds = builder.build(); centerLatLng = bounds.getCenter(); return centerLatLng; }
@H_404_8@然后创建位图
private Bitmap createPolylineBitmap(List<Point> scaledPoints) { Bitmap bitmap = Bitmap.createBitmap(800,600,Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); Paint paint = new Paint(); paint.setColor(ContextCompat.getColor(this,R.color.black)); paint.setStrokeWidth(10); paint.setDither(true); paint.setStyle(Paint.Style.STROKE); paint.setStrokeJoin(Paint.Join.ROUND); paint.setStrokeCap(Paint.Cap.ROUND); paint.setAntiAlias(true); for (int i = 0; i < scaledPoints.size(); i++) { try { canvas.drawLine(scaledPoints.get(i).x,scaledPoints.get(i).y,scaledPoints.get(i + 1).x,scaledPoints.get(i + 1).y,paint); } catch(Exception ex){ canvas.drawLine(scaledPoints.get(i).x,scaledPoints.get(0).x,scaledPoints.get(0).y,paint); } } return bitmap; }
@H_404_8@问题在于该方法使用屏幕投影,并且当用户更改缩放或拖动贴图时,它将更改位图上的多边形位置或其边界.如何不依赖缩放或相机位置而在所有设备上绘制相同尺寸的多边形?
编辑:
因此,基本上我设法在将多边形缩放贴图保存到位图之前在正确的位置获得了正确的尺寸.但是问题是当我使用具有不同分辨率的设备时,多边形的大小也在变化.如何预防呢?
最佳答案
一个可能适合您的聪明技巧-为什么在用户尝试保存地理围栏时不手动缩放相机以适合多段线.
原文链接:https://www.f2er.com/android/531304.html val latLngs = getLatLngs()
val builder = LatLngBounds.Builder()
latLngs.forEach {
builder.include(it.position)
}
val padding = 200
val bounds = builder.build()
val cameraUpdate = CameraUpdateFactory.newLatLngBounds(bounds,padding)
map.moveCamera(cameraUpdate)
//Do your projection operation here...
@H_404_8@