바 이 두 맵 포 지 셔 닝
2502 단어 바 이 두 지도
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=eniNDkjbZhqB4Ro7MkEO15p3"></script>
var geolocation = new BMap.Geolocation();
geolocation.getCurrentPosition(function(r) {
if (this.getStatus() == BMAP_STATUS_SUCCESS) {
var nowLocation = new BMap.Point(r.point.lng,r.point.lat);
var gc = new BMap.Geocoder();
gc.getLocation(nowLocation, function(rs){
var addComp = rs.addressComponents;
// alert(addComp.city);
var strart = addComp.city.indexOf(' ');
city=addComp.city.substring( 0 ,strart);
// city = addComp.city;
// cookie
$.cookie('city',city);
console.log(addComp);
});
} else {
alert(' , GPS');
}
},
{
enableHighAccuracy: true
})