SVGeocoderGoogle Geocoding Service 的简单 Cocoa 封装
SVGeocoder 是对 Google Geocoding Service 的简单 Cocoa 封装,它可以让你迅速的进行地理编码和反向地理编码地址和坐标。它是基于块的,内部使用 NSURLConnection 以及 JSONKit(包含在软件包中)。在使用 SVGeocoder 之前,请确保你阅读 Google Geocoding Service 的服务条款。
示例代码:
[SVGeocoder geocode:addressString completion:^(NSArray *placemarks, NSError *error) { // do something with placemarks, handle errors }];
评论