地图视图到图像转换

发布于 2024-10-15 18:59:41 字数 586 浏览 2 评论 0原文

我需要将地图视图转换为位图图像。我使用的代码如下:

MapView mapview = new MapView(this, "map_id_String");
mapview.setBuiltInZoomControls(true);
MapController mc = mapview.getController();
GeoPoint p = new GeoPoint((int) (36 * 1E6),(int) (36 * 1E6));
mc.animateTo(p);
mc.setZoom(20);
Bitmap viewCapture = null;
mapview.setDrawingCacheEnabled(true);
mapview.layout(0,0,400,400);
mapview.buildDrawingCache();
viewCapture = Bitmap.createBitmap(mapview.getDrawingCache());
mapview.setDrawingCacheEnabled(false);
return viewCapture; 

但是此代码返回开始时的视图图像,该地图尚未完全解析。我需要等到mapview完全解决。

I need to convert mapview to bitmap image. I used the code as below:

MapView mapview = new MapView(this, "map_id_String");
mapview.setBuiltInZoomControls(true);
MapController mc = mapview.getController();
GeoPoint p = new GeoPoint((int) (36 * 1E6),(int) (36 * 1E6));
mc.animateTo(p);
mc.setZoom(20);
Bitmap viewCapture = null;
mapview.setDrawingCacheEnabled(true);
mapview.layout(0,0,400,400);
mapview.buildDrawingCache();
viewCapture = Bitmap.createBitmap(mapview.getDrawingCache());
mapview.setDrawingCacheEnabled(false);
return viewCapture; 

But this code returns the image of view at the beginning, the map which has not been fully resolved. I need to wait it until mapview is fully resolved.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文