Does Apple Map Kit support autofill when user is typing?

Does Apple Map Kit support autofill when user is typing? For example, I start to type a city name and a tableview below shows possible options that the user can tap on to fill in the result without typing in full. Or they can type in Current Location and it autofills. I know Google Maps API supports this, but I'm having trouble finding if Apple Maps does and I think I would prefer using Apple Maps on this iOS project to keep things simpler.


If so, is there a Swift example of how to implement? I found the following, but it's in Objective C and I'm not sure this is covers what auto complete as described above.


https://developer.apple.com/library/ios/samplecode/MapSearch/Introduction/Intro.html


Thanks!

Apple's MapKit doesn't have any APIs for user input at all, so I would have to say no, it does not "support autofill when user is typing."


But you could do that yourself by monitoring a text field for user input and performing a search using MapKit APIs when the user enters a character.

Does Apple Map Kit support autofill when user is typing?
 
 
Q