codeLiumou
codeLiumou
  • 发布:2025-03-26 15:31
  • 更新:2025-03-26 15:31
  • 阅读:188

【报Bug】mapContext点击调用成功,但是界面没变化

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: windows11

HBuilderX类型: 正式

HBuilderX版本号: 4.45

手机系统: Android

手机系统版本号: Android 12

手机厂商: OPPO

手机机型: OPPO A93s

页面类型: vue

vue版本: vue3

打包方式: 云端

项目创建方式: HBuilderX

示例代码:
<template>  
    <view style="height: 600rpx;width: 100%; position: relative;" id="map">  
        <map id="mapId" ref="mapref" style="width: 100%; height: 100%;" :layer-style='5' :show-location='true'  
            :circles="circles" :latitude="gpsAddressInfo.lat" :markers="markers" :longitude="gpsAddressInfo.lng"  
            @controltap="moveToLocation" :scale="scale" :controls="controls" @markertap="markertap">  
        </map>  
    </view>  
</template>  

this.mapContext = uni.createMapContext('mapId', this);  

操作步骤:
moveToLocation() {  
                this.mapContext.moveToLocation({  
                    latitude: this.gpsAddressInfo.lat,  
                    longitude: this.gpsAddressInfo.lng,  
                    success: res => {  
                        console.log('res', res)  
                    },  
                    fail: err => {}  
                });  
            },

预期结果:

回归到原始位置

实际结果:

纹丝不动

bug描述:

触发@controltap,定位到自己所在的位置,界面没反应

2025-03-26 15:31 负责人:DCloud_UNI_OttoJi 分享
已邀请:

要回复问题请先登录注册