var bm = new BMap.Map("l-map");
bm.centerAndZoom(ggPoint, 15);
var myGeo = new BMap.Geocoder();
// 将地址解析结果显示在地图上,并调整地图视野
myGeo.getPoint(strInput, function (point) {
if (point) {
//////
} else {
alert("您选择地址没有解析到结果!");
}
});
////在这里获取point
相关分类