获取支持 ARGeoTrackingConfiguration 的城市列表

Getting a list of cities supporting ARGeoTrackingConfiguration

A​​pple 在 WWDC 2020 上宣布美国 5 个主要城市支持 ARKit Geo Tracking

我在开发者资源上找不到任何关于它的信息。所以找出是否支持此配置的唯一方法是使用 .isSupported 属性:

if !ARGeoTrackingConfiguration.isSupported {

    let storyboard = UIStoryboard(name: "Main", bundle: nil)
    let udMessage = "unsupportedDeviceMessage"
    window?.rootViewController = storyboard.instantiateViewController(
                                                       withIdentifier: udMessage)
}

是否有补充支持ARGeoTrackingConfig的城市列表?

https://developer.apple.com/documentation/arkit/argeotrackingconfiguration 上有一个列表。

但这可能会或可能不会正确更新,谁知道呢。