Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从MKMapviewiPhone 中删除国家/州名称。意味着我只需要没有任何名称的空白地图视图。这可能与MKMapview或任何其他第三方地图。
MKMapview
我想将此功能与MKMapTypeStandard地图类型一起使用。
MKMapTypeStandard
看看MKMapViews属性 mapType MKMapTypeSatellite。设置此类型,您将看到一张没有任何名称的地图。请参阅文档: MkMapView 类参考
MKMapViews
MKMapTypeSatellite
代码:
self.map.mapType = MKMapTypeSatellite;