Eyeball
Eyeball

Reputation: 3317

Is it possible to use the icons from Apple Maps in an MKMapView?

I wonder if it is possible to use the standard Apple Maps annotations for restaurants, coffee places, libraries etc, inside an iOS application.

Do I as a developer have access to the annotation images seen below so that I can subclass MKAnnotationView and use those images?

Apple Maps: enter image description here

Upvotes: 0

Views: 197

Answers (1)

incanus
incanus

Reputation: 5128

You don't have API-level access, but check out https://github.com/0xced/iOS-Artwork-Extractor as a possible way to pull the imagery out of the frameworks. I've used this to grab certain assets for the MapBox iOS SDK to make it look like MapKit.

Upvotes: 1

Related Questions