我試圖開發一個顯示用戶速度和一些其他數據的應用程序。核心位置檢測到的最低速度
我想知道核心位置可以檢測到的最小速度是多少。當我在街上移動時,它的讀數是0.00。
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
//i display some other data here
speedLbl.text =[NSString stringWithFormat:@"Speed: %f km/hr",([lastLocation speed]*3.6)];
}