日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

android高德地图截屏,地图截图功能

發布時間:2023/12/9 编程问答 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android高德地图截屏,地图截图功能 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

使用場景

對MapView以及其上的子view進行截圖。

當用戶在地圖上繪制了標注點、覆蓋物、信息窗口等數據時,利用該截屏功能可以實現包含地圖和繪制數據的完整效果的截屏。

用到產品

核心類/接口

類接口說明版本

AMapSearchAPI- (UIImage *)takeSnapshotInRect:(CGRect)rect;在指定區域內截圖(默認會包含該區域內的annotationView)V4.0.0版本起

核心難點

實現截圖:

- (void)captureAction

{

// 獲取mapView截圖

UIImage *mapImage = [self.mapView takeSnapshotInRect:self.mapView.bounds];

// 對resultView進行截圖

CGSize s = self.resultView.bounds.size;

UIGraphicsBeginImageContextWithOptions(s, NO, [UIScreen mainScreen].scale);

[self.resultView.layer renderInContext:UIGraphicsGetCurrentContext()];

UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

// union image

CGSize imageSize = self.mapView.bounds.size;

UIGraphicsBeginImageContextWithOptions(imageSize, NO, [UIScreen mainScreen].scale);

[mapImage drawInRect:self.mapView.bounds];

[resultImage drawInRect:self.resultView.frame];

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

// show the image

[self transitionToDetailWithImage:image];

}

func captureAction() {

// map image

let mapImage = self.mapView.takeSnapshot(in: self.mapView.bounds)

// result image

let s = self.resultView.bounds.size

UIGraphicsBeginImageContextWithOptions(s, false, UIScreen.main.scale)

self.resultView.layer.render(in: UIGraphicsGetCurrentContext()!)

let resultImage = UIGraphicsGetImageFromCurrentImageContext()!

UIGraphicsEndImageContext()

// union image

let imageSize = self.mapView.bounds.size

UIGraphicsBeginImageContextWithOptions(imageSize, false, UIScreen.main.scale)

mapImage?.draw(in: self.mapView.bounds)

resultImage.draw(in: self.resultView.frame)

let image = UIGraphicsGetImageFromCurrentImageContext()!

UIGraphicsEndImageContext()

self.transitionToDetail(with: image)

}

總結

以上是生活随笔為你收集整理的android高德地图截屏,地图截图功能的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。