vote up 1 vote down star
2

Hi there, this is my first question on stackoverflow. any one know how to get lang\long from full address (street,city ecc..) inserted by the user using the iphone sdk 3.x.

thanks guys

flag

4 Answers

vote up 0 vote down

Nice Post.... Thankx Dude. Its Help me a lot.

link|flag
vote up 0 vote down

There's also CoreGeoLocation, which wraps up the functionality in a framework (Mac) or static library (iPhone). Supports lookups through Google or Yahoo, if you have a preference for one over the other.

http://github.com/thekarladam/CoreGeoLocation

link|flag
vote up 0 vote down

The following method does what you asked for. You need to insert your Google maps key for this to work correctly.

- (CLLocationCoordinate2D) geoCodeUsingAddress:(NSString *)address{

    int code = -1;
    int accuracy = -1;
    float latitude = 0.0f;
    float longitude = 0.0f;
    CLLocationCoordinate2D center;

    // setup maps api key
    NSString * MAPS_API_KEY = @"YOUR GOOGLE MAPS KEY HERE";

    NSString *escaped_address =  [address stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
    // Contact Google and make a geocoding request
    NSString *requestString = [NSString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=csv&oe=utf8&key=%@&sensor=false&gl=it", escaped_address, MAPS_API_KEY];
    NSURL *url = [NSURL URLWithString:requestString];

    NSString *result = [NSString stringWithContentsOfURL: url encoding: NSUTF8StringEncoding error:NULL];
    	if(result){
    		// we got a result from the server, now parse it
    		NSScanner *scanner = [NSScanner scannerWithString:result];
    		[scanner scanInt:&code];
    		if(code == 200){
    			// everything went off smoothly
    			[scanner scanString:@"," intoString:nil];
    			[scanner scanInt:&accuracy];

    			//NSLog(@"Accuracy: %d", accuracy);

    			[scanner scanString:@"," intoString:nil];
    			[scanner scanFloat:&latitude];
    			[scanner scanString:@"," intoString:nil];
    			[scanner scanFloat:&longitude];


    			center.latitude = latitude;
    			center.longitude = longitude;

    			return center;


    		}
    		else{
    			// the server answer was not the one we expected
    			UIAlertView *alert = [[[UIAlertView alloc] 
    								   initWithTitle: @"Warning" 
    								   message:@"Connection to Google Maps failed"
    								   delegate:nil
    								   cancelButtonTitle:nil 
    								   otherButtonTitles:@"OK", nil] autorelease];

    			[alert show];

    			center.latitude = 0.0f;
    			center.longitude = 0.0f;

    			return center;


    		}

    	}
    	else{
    		// no result back from the server
    		UIAlertView *alert = [[[UIAlertView alloc] 
    							   initWithTitle: @"Warning" 
    							   message:@"Connection to Google Maps failed"
    							   delegate:nil
    							   cancelButtonTitle:nil 
    							   otherButtonTitles:@"OK", nil] autorelease];

    		[alert show];

    		center.latitude = 0.0f;
    		center.longitude = 0.0f;

    		return center;
    	}

    }

        center.latitude = 0.0f;
        center.longitude = 0.0f;

        return center;

}
link|flag
vote up 1 vote down

You can use Google Geocoding for this. It is as simple as getting data through HTTP and parsing it (it can return JSON KML, XML, CSV).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.