Allow users to choose between Google Maps and Apple Maps in iOS 6?

I use the basic MapKit features in my iOS app.

Is there a way that allows my iOS 6 users to choose between Google and Apple maps for the map data presented in my application? If so, how to do this programmatically?

+4
source share
2 answers

No.

You can let users choose between iOS cards and other cards (OpenStreetMap, Microsoft VirtualEarth, CloudMade, OpenAerialMap, OpenCycleMap, SpatialCloud, TileStream7) using the me route (on github) or you can go with Bing cards (a library is also available).

But you will have to code different libraries, since the MapKit Framework is only available for Apple maps in iOS 6.

+4
source

ClassicMap (GitHub) does exactly what you are looking for. The sample project shows how to add Google Maps overlay in MapKit and how to switch between Google and Apple maps.

It works well, but the zoom levels seem to be limited by Apple data (I'm sure the maximum increase was higher on Google Maps, at least where I live).

+3
source

Source: https://habr.com/ru/post/1435420/


All Articles