反向地理编码是否需要蜂窝/ wifi?

时间:2016-07-27 22:38:51

标签: ios swift core-location mkreversegeocoder

反向地理编码是否需要蜂窝/ wifi?我正在使用以下代码查找城市名称和邮政编码。此代码是否可以在具有GPS连接但没有蜂窝连接的环境中工作?

   geoCoder.reverseGeocodeLocation(location, completionHandler: { (placemarks, error) -> Void in
        print("REVERSE COMPLETED")
        // Place details
        var placeMark: CLPlacemark!
        placeMark = placemarks?[0]

        // Address dictionary
        print(placeMark.addressDictionary)

        // City
        if let city = placeMark.addressDictionary!["City"] as? NSString {
            print("You are in \(city)")
        } else {
            print("An error occured while fetching the CITY.")
        }

        // Zip code
        if let zip = placeMark.addressDictionary!["ZIP"] as? NSString {
            print("The zip code is \(zip)")
        } else {
            print("An error occured while fetching the ZIP code.")
        }
    })

1 个答案:

答案 0 :(得分:0)

是的,地理编码和反向地理编码都需要Internet连接。如果您要在本地进行此操作,则需要GIS软件和大型地理数据库,其中包含您要进行地理编码的区域的地理位置。

软件和数据库既大又昂贵。我不知道移动设备的GIS软件 - 从移动设备上来看,它都是在云上完成的。

你唯一可以在iOS上使用GPS但没有互联网的东西可以收集纬度/多头位置。

顺便说一句,这与Swift无关。位置管理器是iOS的一部分,可以从任何支持的语言调用。它不是" Swift地理编码。"它的iOS核心位置地理编码。