Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display a MKMapView without street names?

I need to display a map without street names. is it possible using MKMapView ? if not, is there a different map API for iOs that supports this?

thanks, Nimrod

like image 501
Nimrod Yizhar Avatar asked Apr 29 '13 08:04

Nimrod Yizhar


1 Answers

What you need to do, is to set the maptype to Satellite.

Here's how to do this:

[mapView setMapType:MKMapTypeSatellite];

EDIT: Not sure if it's satellite, but try one of these:

[mapView setMapType:MKMapTypeStandard];
[mapView setMapType:MKMapTypeHybrid];
[mapView setMapType:MKMapTypeSatellite];
like image 159
gasparuff Avatar answered Oct 04 '22 16:10

gasparuff