Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Terrain and satellite view using MapKit

Tags:

iphone

i am new to Mapkit View .i want to display when i give lat,lang without destination. is it possible to display maps through terrain,satelite view in mapkit?anny tutorial link?i have seen some examples with accessing google map API(html file).is it neccessary?

like image 750
senthilM Avatar asked Oct 14 '09 07:10

senthilM


1 Answers

Or You can set it Programmatically as

mapView.mapType = MKMapTypeSatellite;

if not supported in Swift 3 try this:

    map.mapType = MKMapType.satellite;
like image 149
Akbar Khan Avatar answered Sep 28 '22 19:09

Akbar Khan