Apple MapKit 3D flyover

后端 未结 4 858
滥情空心
滥情空心 2021-01-31 12:33

Is there any public iOS 8 API available to implement 3D flyover or at least 3D view as shown on Apple Maps App screenshot below?

4条回答
  •  萌比男神i
    2021-01-31 12:39

    mapType property of MKMapView enum can be used to change the map type or region.

    You can use hybridFlyover property to show satellite image along with flyover data where it is available.

    Usage:

    objMapView.mapType = .hybridFlyover
    

    Here, objMapView is an instance of MKMapView class.

提交回复
热议问题