简体   繁体   English

Swift 4 - 通过 UIActivityViewController 共享位置

[英]Swift 4 - sharing location through UIActivityViewController

I'm trying to build an application where I can share an address and open that in any navigation app (Google maps, Apple maps, waze,...).我正在尝试构建一个应用程序,我可以在其中共享地址并在任何导航应用程序(谷歌地图、苹果地图、waze 等)中打开它。 Below is the code that I currently have (after going through pages of google search results including dozens of stackoverflow questions)以下是我目前拥有的代码(在浏览了包括数十个 stackoverflow 问题在内的 google 搜索结果页面之后)

@IBAction func navigeer(_ sender: Any) {
    var items = [AnyObject]()



    let latitude: Double = 52.033809
    let longitude: Double = 6.882286

    let locationTitle = "Navigate to this address"
    let URLString = "https://maps.apple.com?ll=\(latitude),\(longitude)"

    guard let cachesPathString = NSSearchPathForDirectoriesInDomains(.cachesDirectory, .userDomainMask, true).first else {
        print("Error: couldn't find the caches directory.")
        return
    }

    if let url = NSURL(string: URLString) {
        items.append(url)
    }

    let vCardString = [
        "BEGIN:VCARD",
        "VERSION:3.0",
        "N:;Shared Location;;;",
        "FN:Shared Location",
        "item1.URL;type=pref:http://maps.apple.com/?ll=\(latitude),\(longitude)",
        "item1.X-ABLabel:map url",
        "END:VCARD"
        ].joined(separator: "\n")

    let vCardFilePath = (cachesPathString as NSString).appendingPathComponent("vCard.loc.vcf")

    let nsVCardData = NSURL(fileURLWithPath: vCardFilePath)
    let shareItems:Array = [nsVCardData]

    let activityController = UIActivityViewController(activityItems: shareItems, applicationActivities: nil)
    present(activityController, animated:true, completion: nil)
}

When I run the application on my simulator I get the following:当我在模拟器上运行应用程序时,我得到以下信息:

After clicking the share button点击分享按钮后
点击分享按钮后

Why don't I get app suggestions like Apple maps or Google maps?为什么我没有收到像 Apple 地图或 Google 地图这样的应用建议? I also don't get why it suggests me to copy it to contacts..我也不明白为什么它建议我将其复制到联系人..

Thanks in advance.提前致谢。

To share location using UIActivityViewController, Swift 5使用 UIActivityViewController 共享位置,Swift 5

func activityItems(latitude: Double, longitude: Double) -> [AnyObject]? {
        var items = [AnyObject]()

        let URLString = "https://maps.apple.com?ll=\(latitude),\(longitude)"

        if let url = NSURL(string: URLString) {
            items.append(url)
        }

        let locationVCardString = [
            "BEGIN:VCARD",
            "VERSION:3.0",
            "PRODID:-//Joseph Duffy//Blog Post Example//EN",
            "N:;Shared Location;;;",
            "FN:Shared Location",
            "item1.URL;type=pref:\(URLString)",
            "item1.X-ABLabel:map url",
            "END:VCARD"
        ].joined(separator: "\n")

        guard let vCardData : NSSecureCoding = locationVCardString.data(using: .utf8) as NSSecureCoding? else {
            return nil
        }

        let vCardActivity = NSItemProvider(item: vCardData, typeIdentifier: kUTTypeVCard as String)

        items.append(vCardActivity)

        return items
    }

How to use?如何使用?

if let shareObject = self.activityItems(latitude: 52.033809, longitude: 6.882286) {
       //open UIActivityViewController 
}

Reference Link : https://new.josephduffy.co.uk/posts/ios-share-sheets-the-proper-way-locations参考链接: https : //new.josephduffy.co.uk/posts/ios-share-sheets-the-proper-way-locations

Try this..试试这个..

// if the device has google maps installed in it

if (UIApplication.shared.canOpenURL(NSURL(string:"comgooglemaps://")! as URL)) {

            UIApplication.shared.openURL(NSURL(string:
                "comgooglemaps://?saddr=&daddr=\(myLatitude),\(myLongitude)&directionsmode=driving")! as URL)

        }
// if google maps is not installed, try apple map

else if (UIApplication.shared.canOpenURL(NSURL(string:"http://maps.apple.com/maps")! as URL)) {
            // apple map
            let url = "http://maps.apple.com/maps?saddr=\(from.latitude),\(from.longitude)&daddr=\(to.latitude),\(to.longitude)"
            UIApplication.shared.openURL(URL(string:url)!)
        }

// if apple map is also not there, it will show an appStore link to download apple map application.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM