在Google地图上绘制文字不再可能吗?

时间:2013-01-31 17:03:27

标签: android google-maps-android-api-2

我正在将Android应用程序从Android google Maps API的版本1升级到版本2。在我的第1版代码中,我能够通过覆盖draw()方法直接在我的子类ItemizedOverlay中的地图上绘制文本,如下所示。我想要绘制的文本是动态的,我希望在每个地图标记旁边显示一个附加文本项,因此在绘制/删除不同的符号时,将经常添加/删除文本。

@Override
public boolean draw(Canvas canvas, MapView mapView, boolean shadow,
        long when) {
    if (!shadow) {              
            canvas.drawText("some text", (float) point.x + TextOffsetX , (float) point.y + TextOffsetY, m_paint);
     }


    return super.draw(canvas, mapView, shadow, when);
}

但是,在API的第2版中似乎不可能。这不是ItemizedOverlays的概念,也没有什么可以被子类化。有没有什么方法可以在新的API版本中在GoogleMap上绘制文字?

2 个答案:

答案 0 :(得分:4)

我遇到了同样的问题,尝试从v1升级到v2。最后,我使用了一个标记,用文本创建了一个Bitmap,并将其用作标记的图标。

首先,您必须使用文本创建de Bitmap。 注意:使用文本属性(颜色,字体,textalign,...)配置paintText

Rect boundsText = new Rect();
paintText.getTextBounds(strText, 0, strText.length(), boundsText);
Bitmap.Config conf = Bitmap.Config.ARGB_8888;
Bitmap bmpText = Bitmap.createBitmap(boundsText.width(), boundsText.height(), conf);

然后,使用Canvas绘制文本。这是一个有点疯狂修复文字与画布维度。

Canvas canvasText = new Canvas(bmpText);
canvasText.drawText(strText, canvasText.getWidth() / 2, canvasText.getHeight(), paintText);

最后使用Bitmap在MarkerOption中创建图标

MarkerOptions markerOptions = new MarkerOptions()
    .position(latlngMarker)
    .icon(BitmapDescriptorFactory.fromBitmap(bmpText))
    .anchor(0.5f, 1);

希望它可以帮助你。

答案 1 :(得分:4)

您可以使用以下代码从视图创建标记:

public static Bitmap createDrawableFromView(Context context, View view) {
    DisplayMetrics displayMetrics = new DisplayMetrics();
    ((Activity) context).getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
    view.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    view.measure(displayMetrics.widthPixels, displayMetrics.heightPixels);
    view.layout(0, 0, displayMetrics.widthPixels, displayMetrics.heightPixels);
    view.buildDrawingCache();
    Bitmap bitmap = Bitmap.createBitmap(view.getMeasuredWidth(), view.getMeasuredHeight(), Bitmap.Config.ARGB_8888);

    Canvas canvas = new Canvas(bitmap);
    view.draw(canvas);

    return bitmap;
}

来源:http://www.nasc.fr/android/android-using-layout-as-custom-marker-on-google-map-api/

编辑:如果您使用多个标记,请确保您没有为每个标记执行DisplayMetrics并查看设置内容(Bitmap bitmap = .....以上的所有内容)。这会大大减慢你的应用程序。