0
我正在實現具有經度和緯度的地圖視圖特定位置,如下所示。爲什麼我必須縮小以查看iOS中mapview的註釋,目標c
self.hotelmapView.showsUserLocation = YES;
self.hotelmapView.showsBuildings = YES;
locationManager = [CLLocationManager new];
if ([locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
[locationManager requestWhenInUseAuthorization];
}
//[locationManager startUpdatingLocation]; --> no need to add this for real devices.else should add this.
MKPointAnnotation *annotationPint = [MKPointAnnotation new];
annotationPint.title = @"anuradh hotel name";
annotationPint.coordinate = CLLocationCoordinate2DMake(51.585300, -0.1257480);
notationarray = [NSMutableArray new];
[notationarray addObject:annotationPint];
注:該作品在simulator.when我與設備測試很好,我不得不縮小在地圖上看到(引腳顯示與方桌,不顯示地圖)
我保持足夠的時間,但沒有顯示地圖。任何解決方案? –
我的工作時間也面臨同樣的問題,我改變了地圖類型作爲標準,然後它顯示在iphone 5家庭ony –
感謝您的快速答覆。如果你瞭解任何解決方案,請足夠的親切,使我知道,他也會幫助別人。 –