2016-07-11 51 views
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我與設備測試很好,我不得不縮小在地圖上看到(引腳顯示與方桌,不顯示地圖)

回答

0

它將發生在IOS8.3和更高版本上的SIM和設備(可能是它的一個bug)。系統地圖應用程序正在運行(它也顯示空網格)一分鐘,直到它下載地圖。在那裏MKMapView開始渲染正常。

+0

我保持足夠的時間,但沒有顯示地圖。任何解決方案? –

+0

我的工作時間也面臨同樣的問題,我改變了地圖類型作爲標準,然後它顯示在iphone 5家庭ony –

+0

感謝您的快速答覆。如果你瞭解任何解決方案,請足夠的親切,使我知道,他也會幫助別人。 –

相關問題