cllocation

    0熱度

    1回答

    我曾在iOS上工作過,並有一個帶地理座標的多邊形,如(-27.589846,151.982112)( - 27.590174,151.983045)( - 27.590773,151.982680)( - 27.590602,151.981908)。 我想找出它的外圓incircle:center and radius? 有沒有辦法做到這一點? 謝謝?

    2熱度

    1回答

    我想計算用戶和所有註釋之間的距離。 我的註釋來自一個被解析的csv文件。我的註釋位於Location類中。一切工作正常,除了距離計算。 計算距離,我發現這段代碼: -(void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)newLocation { for (Location *annota

    8熱度

    2回答

    基本上一半的時間委託方法 - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations; 根本沒有被調用的時候。但另一半的時間它完美的工作!我發現它通常是在關閉並退出它之後首次啓動Xcode時發生的,但之後或之後的一對運行似乎正常運行。我不是100%確定它是否只是一個Xc

    1熱度

    1回答

    到目前爲止,我嘗試生成隨機的經度和緯度並使用「CLLocationCoordinate2DIsValid」驗證它。但問題是我從來沒有得到我指定的「CLCircularRegion」內的座標。以下是邏輯,我寫: CLLocationCoordinate2D myCoordinates = { currentLocationLatitude, currentLocationLongitude };

    8熱度

    4回答

    如何獲取當前位置的經緯度。 我試試這個。使用Xcode 6.01和IOS SDK 8.0 -(CLLocationCoordinate2D) getLocation{ locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; locationManager.

    0熱度

    1回答

    我的計算有點問題。 我想要的是應用程序的用戶在地圖可見區域的某處放置移動的地圖註記。雖然註釋位置正在改變(GPS單位),但地圖應該移動,但引腳始終保持在屏幕上的該點。 我試圖從this stackoverflow answer 使用效果和 -(CLLocationDistance) calcluateDistance:(CLLocationCoordinate2D)annotationLocati

    0熱度

    1回答

    我需要計算在我的計劃是所有的GPS參數,所以我使用這段代碼: (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations { CLLocation* loc = [locations lastObject]; 它收集所有的GPS測量(高度,速度等等)在loc對象中

    0熱度

    2回答

    我正在嘗試在現有項目中顯示用戶位置(藍點)並執行位置更新時做非常基本的事情。我擁有所有委託方法,設置用於顯示用戶位置,並且可以使其在新項目中工作。 儘管我使用的是真實的設備,但並不是要求我說「​​您是否想在此應用中使用位置服務?」或者在安全性 - >位置服務下,我無法在別人旁邊看到我的應用程序。 Howvever當我檢查[CLLocationManager locationServicesEnab

    1熱度

    1回答

    下面是我的CLLocationManagerDelegate的代碼。我打電話使用委託方法: locationManager.delegate = self; locationManager.desiredAccuracy = kCLLocationAccuracyBest; [locationManager startUpdatingLocation]; 的委託方法: - (void)l

    0熱度

    2回答

    我想在IOS中附加偵聽器,每當GPS從設置打開或關閉時都會調用此偵聽器。無論我的應用程序正在運行,在後臺還是已停止,都應調用監聽器。我有這個功能,我需要在服務器端保持已安裝應用程序的用戶的GPS設置,所以無論何時更改GPS,我都必須通知服務器。