var destination = '东莞市长安镇锦绣路2号金利安商贸中心15楼';
var latitude = 22.814208; // 纬度
var longitude = 113.797686; // 经度
var scale = 15;//缩放比例
this.mapContext = uni.createMapContext('maps', this);
this.mapContext.openMapApp({
latitude: latitude, // 纬度
longitude: longitude, // 经度
destination: destination,
scale: scale, // 缩放比例
success: function () {
console.log('打开地图成功');
},
fail: function (err) {
console.log('打开地图失败', err);
}
})
- 发布:2024-07-19 15:16
- 更新:2024-07-22 15:11
- 阅读:96
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 12.5。1
HBuilderX类型: 正式
HBuilderX版本号: 4.23
第三方开发者工具版本号: 4.23
基础库版本号: 3.1.4
项目创建方式: HBuilderX
示例代码:
操作步骤:
直接点击事件调用上面代码即可
直接点击事件调用上面代码即可
预期结果:
可以正常弹出显示取消按钮
可以正常弹出显示取消按钮
实际结果:
取消按钮没有显示,显示了一个空白占位
取消按钮没有显示,显示了一个空白占位
t***@163.com (作者)
微信的也有问题:https://developers.weixin.qq.com/community/develop/doc/000086655fc08891603ce4d1359c00?highLine=openMapApp
2024-07-22 15:28