I have a UITableView
which may potentially contain a large number of cells, and in some cells I want a UIImageView
showing a map of a location, the coordinates of which are known only at runtime.
I want the table view to scroll smoothly and I want the maps in the cells to not be scrollable at all.
I've been directed to avoid Apple Maps. Besides, MKMapSnapshotter
is iOS 7 and up. I have to support iOS 6.
So is Google Maps image API my best option?
I'm already using the Google Maps iOS SDK anyway, so I'd like to use it for this if possible. But does it have this feature? An equivalent to MKMapSnapshotter
? I'm surprised I can't find it in the documentation.