当前位置与地图

发布于 2024-11-03 07:47:05 字数 95 浏览 0 评论 0原文

哈伊 我正在创建一个应用程序。我想通过使用 GPS 的地图和不使用 GPS 的短信向用户发送当前位置。是否可以? 如果有人知道请帮助我。给出一些示例教程或代码。 谢谢

hai
I am creating an application. I want to sent the users current location with map using gps and without gps as sms. Is it possible?
Please help me if anybody knows. Give some sample tutorial or code.
Thank you

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

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

发布评论

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

评论(1

靑春怀旧 2024-11-10 07:47:05

您可以通过以下代码截取mapview的屏幕截图,并通过链接

 - (UIImage *)captureView:(UIView *)view 
{
    CGRect screenRect = [[UIScreen mainScreen] bounds];

   UIGraphicsBeginImageContext(screenRect.size);

  CGContextRef ctx = UIGraphicsGetCurrentContext();
  [[UIColor blackColor] set];
  CGContextFillRect(ctx, screenRect);

  [view.layer renderInContext:ctx];

   UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();

  return newImage;
}

you can take screen shot of mapview through the following code and send multimedia SMS through the link

 - (UIImage *)captureView:(UIView *)view 
{
    CGRect screenRect = [[UIScreen mainScreen] bounds];

   UIGraphicsBeginImageContext(screenRect.size);

  CGContextRef ctx = UIGraphicsGetCurrentContext();
  [[UIColor blackColor] set];
  CGContextFillRect(ctx, screenRect);

  [view.layer renderInContext:ctx];

   UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();

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