🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## uni.openLocation(OBJECT) 使用应用内置地图查看位置。 **OBJECT 参数说明** ![](https://box.kancloud.cn/d06ab464969904919e95a8a56cf5380d_858x365.png) ## 示例 ``` uni.getLocation({ type: 'gcj02', //返回可以用于uni.openLocation的经纬度 success: function (res) { const latitude = res.latitude; const longitude = res.longitude; uni.openLocation({ latitude: latitude, longitude: longitude, success: function () { console.log('success'); } }); } }); ```