Как я могу определить CLLocation или MKPlacemark из адреса?

голоса
2

Я видел API документация и демо после демо о том, как сделать обратный геокод - получить адрес, учитывая Lat / Long место. Мне нужно сделать обратное. Я предполагаю, что это уже решена проблема, так как MapKit API Apple, позволяет избежать его полностью.

Задан 20/09/2009 в 20:25
источник пользователем
На других языках...                            


1 ответов

голоса
6

Один из способов заключается в использовании веб-сервиса Google, как так:

-(CLLocationCoordinate2D) addressLocation {
    NSString *urlString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv", 
                           [addressField.text stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    NSString *locationString = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString]];
    NSLog(@"locationString = %@",locationString);

    NSArray *listItems = [locationString componentsSeparatedByString:@","];

    double latitude = 0.0;
    double longitude = 0.0;
    if([listItems count] >= 4 && [[listItems objectAtIndex:0] isEqualToString:@"200"]) {
        latitude = [[listItems objectAtIndex:2] doubleValue];
        longitude = [[listItems objectAtIndex:3] doubleValue];
/*      
        NSString *nameString = [NSString stringWithFormat:@"http://ws.geonames.org/findNearestAddress?lat=%f&lng=%f",latitude,longitude];
        NSString *placeName = [NSString stringWithContentsOfURL:[NSURL URLWithString:nameString]];
        NSLog(@"placeName = %@",placeName);
 */
    }
    else {
        //Show error
    }
    CLLocationCoordinate2D location;
    location.latitude = latitude;
    location.longitude = longitude;

    return location;

}
Ответил 20/09/2009 в 20:30
источник пользователем

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