Как получить левую верхнюю и правую нижнюю широту и долготу отображения в MapKit

голоса
9

Как получить левую верхнюю и правую нижнюю широту и долготу отображения в MapKit? Я использую этот код, но он не работает должным образом. Как мне это исправить?

MKCoordinateRegion region = [map region];

double topL,topG,bottomL,bottomG;
//if latitude=55 and latitudeDelta=126 topL is 118 and it will be not at top, it will be at buttom of screen
topL = region.center.latitude + region.span.latitudeDelta/2; 

topG = region.center.longitude - region.span.longitudeDelta/2;

CLLocationCoordinate2D lt;
lt.latitude=topL;
lt.longitude=topG;
annotation = [Annotation new];
annotation.coordinate = lt;
annotation.title = @Left;
[map addAnnotation:annotation];
[annotation release];
//if latitude=55 and latitudeDelta=126 bottomL is -7.23 and it will be not at bottom, it will be at above bottom of screen
bottomL = region.center.latitude - region.span.latitudeDelta/2;


bottomG = region.center.longitude + region.span.longitudeDelta/2;

CLLocationCoordinate2D rb;
rb.latitude=bottomL;
rb.longitude=bottomG;
annotation = [Annotation new];
annotation.coordinate = rb;
annotation.title = @Right;
[map addAnnotation:annotation];
[annotation release];
Задан 02/12/2009 в 10:05
источник пользователем
На других языках...                            


2 ответов

голоса
25

Существует гораздо более простой подход к получению этих координат ... Использование точки вашего зрения, и преобразовывают:

CLLocationCoordinate2D topLeft, bottomRight;
topLeft = [mapView convertPoint:CGPointMake(0, 0) toCoordinateFromView:mapView];
CGPoint pointBottomRight = CGPointMake(mapView.frame.size.width, mapView.frame.size.height);
bottomRight = [mapView convertPoint:pointBottomRight toCoordinateFromView:mapView];
Ответил 02/12/2009 в 10:13
источник пользователем

голоса
2

Я использую Swift2.0, я создал extensionдляMKMapView

extension MKMapView {
    func topLeftCoordinate() -> CLLocationCoordinate2D {
        return convertPoint(CGPoint.zero, toCoordinateFromView: self)
    }

    func bottomRightCoordinate() -> CLLocationCoordinate2D {
        return convertPoint(CGPoint(x: frame.width, y: frame.height), toCoordinateFromView: self)
    }
}
Ответил 24/01/2016 в 15:46
источник пользователем

Cookies help us deliver our services. By using our services, you agree to our use of cookies. Learn more