mkmapview 缩略图

发布于 2024-12-22 02:04:07 字数 715 浏览 0 评论 0原文

我正在 MKMAPView 中创建没有 Google 徽标的缩略图,Apple 可以接受吗? 就像下面的示例缩略图一样

  CGPoint annotationPoint = [mapView convertCoordinate:view.annotation.
    coordinate toPointToView:_mapView];

 float boxDY=annotationPoint.y;
float boxDX=annotationPoint.x;
CGRect box = CGRectMake(boxDX,boxDY,100,100);
UIGraphicsBeginImageContext(_mapView.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIImage *img=[UIImage imageWithCGImage:CGImageCreateWithImageInRect
  ([image  CGImage],CGRectMake(box.origin.x-30, box.origin.y-35,75, 75))];
UIImageWriteToSavedPhotosAlbum(img, nil, nil, nil);
UIGraphicsEndImageContext();

I am creating thumbnail image in MKMAPView without Google logo ,Is it Acceptable by Apple?
like below Example Thumbnail

  CGPoint annotationPoint = [mapView convertCoordinate:view.annotation.
    coordinate toPointToView:_mapView];

 float boxDY=annotationPoint.y;
float boxDX=annotationPoint.x;
CGRect box = CGRectMake(boxDX,boxDY,100,100);
UIGraphicsBeginImageContext(_mapView.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIImage *img=[UIImage imageWithCGImage:CGImageCreateWithImageInRect
  ([image  CGImage],CGRectMake(box.origin.x-30, box.origin.y-35,75, 75))];
UIImageWriteToSavedPhotosAlbum(img, nil, nil, nil);
UIGraphicsEndImageContext();

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十年不长 2024-12-29 02:04:07

是的,没有“Google 徽标”也是可以接受的,因为主地图视图有“Google 徽标”

Yes it's Acceptable without 'Google logo', because main map view have 'Google logo'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文