我需要从几个点绘制一个多边形(我有自己的纬度,经度)。 我基于这两个答案来实现我的实现: Drawing an empty polygon given a set of points on a Map Overylay (Android 2.1) Drawing a line/path on Google Maps
在我的MapOverlayAction.java中,我为这些引脚设置了叠加层:
mapOverlays.add(itemizedoverlay);
setLocationOverlay(mapView, mapController);
其中itemizedoverlay是OverlayItems数组
这很好用。但我还需要为这些点绘制一个多边形(每个点都是一个顶点)。所以我所做的是:
Path path = new Path();
for (int j = 0; j < itemizedoverlay.size(); j++) {
GeoPoint gP1 = itemizedoverlay.getItem(j).getPoint();
Point currentScreenPoint = new Point();
Projection projection = mapView.getProjection();
projection.toPixels(gP1, currentScreenPoint);
if (j == 0)
path.moveTo(currentScreenPoint.x, currentScreenPoint.y);
else
path.lineTo(currentScreenPoint.x, currentScreenPoint.y);
}
在这两个答案中我基于我的解决方案,正在调用以下方法:
Paint mPaint = new Paint();
mPaint.setDither(true);
mPaint.setColor(Color.RED);
mPaint.setStyle(Paint.Style.FILL_AND_STROKE);
mPaint.setStrokeJoin(Paint.Join.ROUND);
mPaint.setStrokeCap(Paint.Cap.ROUND);
mPaint.setStrokeWidth(2);
canvas.drawPath(path, mPaint);
我的问题是,我从哪里获取画布? 我在我的活动类中拥有所有这些代码。
谢谢!