🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 地图选择位置 ## 4.2.地图选择位置 ~~~ admin.chooseLocation({ needCity: true, onSelect: function (res) { layer.msg(JSON.stringify(res), {icon: 1}); } }); ~~~ | 参数 | 默认 | 描述 | | --- | --- | --- | | title | "选择位置" | 弹窗标题 | | needCity | false | 是否返回行政区,省市区默认不返回 | | center | 定位当前城市 | 地图默认的中心点 | | defaultZoom | 11 | 地图默认缩放级别 | | pointZoom | 17 | 选中时地图的缩放级别 | | keywords | 无 | poi检索关键字,例如:建筑、写字楼 | | pageSize | 30 | poi检索最大数量 | | onSelect | 无 | 选择回调 | | mapJsUrl | 内置 | 高德地图js的url | * 地图默认中心点参考值:\[116.397428, 39.90923\],经度,纬度 * 地图url参考值:`https://webapi.amap.com/maps?v=1.4.14&key=xxxxxxx` * 返回结果说明: * [res.name](http://res.name/); // 地点名称 * res.address; // 详细地址 * res.lat; // 纬度 * res.lng; // 经度 * res.city; // 城市,是一个对象 * res.city.province; // 省 * res.city.city; // 市 * res.city.district; // 区 * res.city.citycode; // 城市代码 地图相关参数的详细介绍请前往[高德地图API](https://lbs.amap.com/api/javascript-api/summary)查看。 ![](https://s2.ax1x.com/2019/08/29/mL47En.png)