How to search MKMapView with UISearchBar?

后端 未结 6 2235
南旧
南旧 2020-11-28 18:54

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

6条回答
  •  爱一瞬间的悲伤
    2020-11-28 19:51

    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 &.

提交回复
热议问题