Google Geocoding API 免费版和商业版(地理编码逆地址)


免费版:

	 public static final String URL_GEOCODE =
	 "http://maps.google.com/maps/api/geocode/json?latlng=%1$f,%2$f&sensor=false®ion=cn&language=%3$s";

通配符:经度、纬度、语言


商业版:


        客户端使用商业版的逆地址需要在逆地址的url添加两个字段: clientsignature
 
       clientID 可以从google Enterprise support portal 登录找到,同时也会看到接下来需要用到的 private key(对应clientID)
       signature需要 clientID和private key 一起配合通过算法得到。
 
 
1,构造您的网址,并确保其中包含 client 和 sensor 参数。请注意,任何非标准字符都需要进行网址编码:

http://maps.google.com/maps/api/geocode/json?latlng=22.527850,113.930340&sensor=false&client=gme-xxyyzz&region=cn&language=EN(举例,以上就是我某一个坐标要进行逆地址前所组成的url)


2,通过一定的算法,生成signature密钥,完整的url,如下所示:
 
http://maps.google.com/maps/api/geocode/json?latlng=22.527850,113.930340&sensor=false&client=gme-xxyyzz&region=cn&language=EN&signature=W3oYdwjkdjwalkFGfeeQXZzE=
 

 
这个url,就可以成功的进行商业版的逆地址了。
 
【注意:signature密钥不是唯一的,也就是说每一次逆地址前,都需要动态的生成一个url相对应的密钥,相同的经纬度,生成的会是同一个密钥
 
密钥生成算法,google 已经给出了不同语言下的示例:java、c#、python,可以直接点击以下链接:
https://developers.google.com/maps/documentation/business/webservices/auth?utm_campaign=eps&utm_source=unify#generating_valid_signatures

 
objective-c:
http://gmaps-samples.googlecode.com/svn/trunk/urlsigning/urlsigner.m
 
 
 
使用限制
 
使用 Google Geocoding API 时,每天发送的地理位置查询请求不得超过 2,500 个。(Google Maps API for Business 用户每天最多可执行 100,000 个请求。)
 
 
一些相关的网站
 
Google Maps Mobile SDK for Business
https://developers.google.com/maps/documentation/business/mobile/ 


Google Maps Mobile SDK for Business:Android
https://developers.google.com/maps/documentation/business/mobile/android/

 
Google Maps API for Business
https://developers.google.com/maps/documentation/business/  


Maps API for Business 网络参数
https://developers.google.com/maps/documentation/business/webservices?hl=zh-cn 


Authentication and Authorization
https://developers.google.com/maps/documentation/business/webservices/auth?utm_campaign=eps&utm_source=unify#generating_valid_signatures


Maps API for Business :Authentication
https://developers.google.com/maps/documentation/business/mobile/android/auth



Google Geocoding API 
https://developers.google.com/maps/documentation/geocoding/?hl=zh-cn#Limits

 
google Enterprise support portal
http://www.google.com/enterprise/portal


你可能感兴趣的:(Geocoding,地理编码,GoogleMapAPI,逆地址编码,businessapi)