HowTo инициализируют MKMapView с данным пользовательским местоположением?

Просто удалите все ".svn" папки в нем. Вот именно.

19
задан jantimon 25 September 2009 в 14:23
поделиться

4 ответа

Yes, it is possible to have a separate location manager object and assign its value to the mapview (BTW, I'm using '=' below as list prefix to prevent the SO code-formatter from borking).

= In your UIViewController maintain two separate properties: one to a MKMapView and one to a CLLocationManager.

= Create a XIB file with the MKMapView and any other window chrome you want. Connect the outlets to the controller propeties. Make sure MKMapView does NOT follow user location.

= Have the UIViewController implement the CLLocationManagerDelegate protocol--especially the locationManager:didUpdateToLocation:fromLocation: method which will be called whenever a new location value is available. We'll be setting the controller as the delegate for the location manager.

= In the viewController's loadView method, load the NIB with the MKMapView in it. To give user feedback you may want to put up a UIActivityIndicatorView spinner and set it to startAnimating. Then you start with:

self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
self.locationManager.desiredAccuracy = kCLLocationAccuracyKilometer;
self.locationManager.distanceFilter = 10; // or whatever
[self.locationManager startUpdatingLocation];

= In locationManager:didUpdateToLocation:fromLocation: check to see if the event was updated since the last N seconds. Then tell the location manager to stop updating, the spinner to stop animating, and get the lat/long data and assign it to the map view along with a view span and region so it zooms and centers to the right place.

= Now here's the tricky part: the blue marble 'throbber' is a feature of the mapview tracking user location. You'll have to momentarily 'fake it' until the real one kicks in (or just use a separate marker for the current location and maintain its position yourself). Personally I'd go with the blue marble that the user is familiar with.

= To make it so it shows right at startup you will need to create a custom MKAnnotationView with just the blue marble graphic added at the location returned by the location manager. This means taking a snapshot of a Mapview with the location showing, then photoshopping just the blue marble out and using it as the image for a custom annotation view.

= If you want it to actively follow the map, you can enable the userlocation tracking of the mapview and when it gets the actual data, you hide your previously set marker and let the mapview do the updating. The other option is to allow the existing location manager to continue receiving updates every second or so and update the position of the blue marble annotation yourself.

= To let the mapview's own userLocation do the updating add to viewDidLoad:

[self.map.userLocation addObserver:self 
forKeyPath:@"location" 
options:(NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld) 
context:NULL];
self.map.showsUserLocation = YES; // starts updating user location

= Implement observeValueForKeyPath. It gets called when the location attribute of the mapview's userlocation has a value:

-(void)observeValueForKeyPath:(NSString *)keyPath 
      ofObject:(id)object 
        change:(NSDictionary *)change 
       context:(void *)context 
{
     if ([self.map isUserLocationVisible]) {
         [self.locationManager stopUpdatingLocation];
         self.ownBlueMarble.hidden = YES;
     }
     // The current location is in self.map.userLocation.coordinate
}

= To avoid the warm-up delay in showing current location, keep a reference to the viewController containing the map and the location manager so it doesn't go away (it's a bit of a memory hog but if you release it you'll have to wait again until MapView loads the tiles and is ready to go).

= In viewWillLoad you can stuff the last known location into the custom bluemarble annotation and show it. Toggle on/off the userLocation tracking and when you get the notification the same hide-the-annotation-show-the-real-marble trick will work. The mapview's own location manager kicks in and when it has the data, you can make your annotation marker disappear.

= You might want to implement the viewController's viewWillDisappear method and manually turn off userLocation tracking on the mapview so it's off by default the next time the view is brought up. You'll also want to get the last known userLocation and save it for the next get-go. That way, you can do all the positioning marker-juggling in the viewWillAppear method and not have to worry about userLocation interfering until you're ready for it.

Good luck.

42
ответ дан 30 November 2019 в 02:03
поделиться

В вашем контроллере:

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    CLLocationCoordinate2D coord = {latitude: 37.423617, longitude: -122.220154};
    MKCoordinateSpan span = {latitudeDelta: 1, longitudeDelta: 1};
    MKCoordinateRegion region = {coord, span};
    [mapView setRegion:region];
}

Когда появится карта, она будет центрирована рядом с Пало-Альто

27
ответ дан 30 November 2019 в 02:03
поделиться

Попробуйте установить для свойства showUserLocation значение false при инициализации, а затем восстановите область , которая была ранее в представлении карты (вам, очевидно, придется сохранить это раньше предыдущая карта уничтожена).

Это то, что вы хотели?

0
ответ дан 30 November 2019 в 02:03
поделиться

Вам не нужно использовать другой диспетчер местоположения, вы можете добавлять любые точки на карту и обновлять их с помощью любой другой логики, которая вам нужна.

Допустим, у вас есть сокет. соединение с автомобилем с дистанционным управлением, и этот автомобиль отправляет обратно данные сокета, содержащие информацию о географическом местоположении в полезной нагрузке. Вы можете проанализировать это и обновить местоположение эскиза на карте в режиме реального времени. Свойство "userLocation" для этого не нужно, но вы можете показать его, если хотите.

Местоположение пользователя доступно только для чтения, вы можете использовать его или нет. Это не значит, что вам нужен другой менеджер местоположения, чтобы делать все, что вам может понадобиться. Похоже, вашему приложению эта функция не нужна, но я могу неправильно понять ваш вопрос.

0
ответ дан 30 November 2019 в 02:03
поделиться
Другие вопросы по тегам:

Похожие вопросы: