0

我有一个谷歌地图活动,包括小径、地点、接近警报等,我想在当前谷歌地图上的同一位置(按纬度和经度校准)放置一个新的 PNG 地图(新图层)。我怎么能那样做?

最好的祝福

4

2 回答 2

1

使用 Google Maps Overlay功能。这是需要做的事情的粗略大纲。

public class PNGOverlay extends Overlay {
  Bitmap mImage;
  // Allocate once and reuse
  private final Paint mPaint = new Paint();

  PNGOverlay(Bitmap image) {
    mImage=image;

    // Configure paint so image is transparent 
  }

  /**
  * Draw the overlay over the map.
  * 
  * @see com.google.android.maps.Overlay#draw(Canvas, MapView, boolean)
  */
  @Override
  public void draw(Canvas canvas, MapView mapv, boolean shadow) {
    // Use projection to figure out where to draw
    Point center = new Point();
    Projection projection = mapv.getProjection();
    projection.toPixels(new GeoPoint(lat,lon), p);

    // Transform image to fill the correct area
    Matrix matrix = new Matrix;
    // Do stuff

    // Draw the image
    canvas.drawBitmap(mImage, matrix, mPaint);
  }

}
于 2012-08-01T13:25:41.717 回答
0

您是否尝试将两个视图都添加到 FrameLayout?但是,我建议您使顶部透明。

将 Surface View 用于相机和其他用于叠加图像

于 2012-08-01T12:45:18.413 回答