I have an application that needs to have a similar search feature like the Apple \"Maps\" application (included with iPhone, iPod Touch and iPad).
The feature in que
This link helps you if you search a region.
NSMutableString *urlString = [NSMutableString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@?output=json",inAddress];
If you want to search a street this is the corect link
NSMutableString *urlString = [NSMutableString stringWithFormat:@"http://maps.google.com/maps/geo?q=%@&output=json",inAddress];
Notice that the 2nd ? should be &.