💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 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'); } }); } }); ```