微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SVGeocoder

程序名称:SVGeocoder

SVGeocoder 介绍

SVGeocoder 是对 Google Geocoding
Service
的简单 Cocoa
封装,它可以让你迅速的进行地理编码和反向地理编码地址和坐标。It is block-based, uses NSURLConnection
internally as well as JSONKit (included in
package). Make sure you read the Google Geocoding Service Terms of
Service
before
using SVGeocoder.

示例代码:

[SVGeocoder geocode:addressString
         completion:^(NSArray *placemarks, NSError *error) {
             // do something with placemarks, handle errors
         }];

SVGeocoder 官网

https://github.com/samvermette/SVGeocoder

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐