Point Android Google Maps SDK to http://maps.google.cn -
so have mapping feature in our application @ present not functional in china.
i wondering there way point google maps sdk
http://maps.google.cn
so accessible in china?
the google maps apis served within china domain maps.google.cn. domain not support https. when making requests google maps apis china, please replace //maps.googleapis.com //maps.google.cn.
for example:
//maps.googleapis.com/maps/api/geocode/json?address=1600+amphitheatre+parkway,+mountain+view,+ca become:
//maps.google.cn/maps/api/geocode/json?address=1600+amphitheatre+parkway,+mountain+view,+ca google maps javascript api can loaded following bootstrap:
<script src="http://maps.google.cn/maps/api/js?key=your_api_key" type="text/javascript"> </script>
for additional details refer here here
Comments
Post a Comment