0

我无法在 iphone 模拟器中获取当前位置。我将自定义位置设置为埃及的纬度和经度,但没有获得当前位置。

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    //Make this controller the delegate for the map view.
    self.MapView.delegate = self;     

    // Ensure that you can view your own location in the map view.
    [self.MapView setShowsUserLocation:YES];



    //Instantiate a location object.
    locationManager = [[CLLocationManager alloc] init];
    [locationManager startUpdatingLocation];

    //Make this controller the delegate for the location manager.
    [locationManager setDelegate:self];

    //Set some parameters for the location object.
    [locationManager setDistanceFilter:kCLDistanceFilterNone];
    [locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
}

这是委托:

#pragma mark - MKMapViewDelegate methods.

- (void)mapView:(MKMapView *)mv didAddAnnotationViews:(NSArray *)views 
{    
    MKCoordinateRegion region;
    region = MKCoordinateRegionMakeWithDistance(locationManager.location.coordinate,2000,2000);


    [mv setRegion:region animated:YES];
}

请任何人帮助我。

4

2 回答 2

3

究竟是什么问题?没有获得您应该拥有的 userLocation 或没有将地图区域移动到正确的位置?

如果是第一个,则主要是工具问题,而不是代码问题:

如果您的位置位于项目内的 gpx 文件中,您应该可以通过编辑 Scheme / Options / Allow Location Simulation / 并选择默认位置来开始

从特定位置开始的方案版

您的项目中应该有一个 DemoStart.gpx 文件,如下所示:

<?xml version="1.0"?>
<gpx version="1.1" creator="Xcode">
    <wpt lat="20.88072" lon="10.67429">
        <name>Demo Starting Location</name>
    </wpt>
</gpx>

(对不起,我懒得找埃及的确切坐标)。

于 2012-10-23T11:52:51.557 回答
0

您必须首先确保您的 CLLocationManager 将他的位置更新为您的位置。为此,将视图控制器设置为 CLLocationManager 的委托,您已经这样做了,并保存此位置。startUpdatingLocation完成所有设置并设置showsUserLocation为后尝试调用YES

- (void)locationManager:(CLLocationManager *)manager

     didUpdateLocations:(NSArray *)locations {

    // If it's a relatively recent event, turn off updates to save power

    CLLocation* myLocation = [locations lastObject];
}

确保您在 iOS Simulator Version >= 5.1 上进行测试

于 2012-10-23T10:47:48.547 回答