XLL
XLL
  • 发布:2021-04-02 17:10
  • 更新:2021-04-16 18:20
  • 阅读:363

【报Bug】H5地图组件,画圆报错

分类:uni-app

产品分类: uniapp/H5

PC开发环境操作系统: Windows

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

HBuilderX类型: 正式

HBuilderX版本号: 3.1.7

浏览器平台: Chrome

浏览器版本: 89.0.4389.114(正式版本) (64 位)

项目创建方式: HBuilderX

示例代码:
<template>  
    <view class="content">  
        <view>  
            <map style="width: 100%; height: 100vh;" :latitude="latitude" :longitude="longitude" :circles="circles">  
            </map>  
        </view>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                latitude: '',  
                longitude: '',  
                circles:[],  
                radius:'',  
            };  
        },  
        onLoad(options) {  
            this.latitude = options.lat;  
            this.longitude = options.lng;  
            this.radius = options.radius;  

        },  
        mounted() {  
            this.circles = [{  
                latitude:this.latitude,  
                longitude:this.longitude,  
                radius:this.radius  
            }]  

            console.log(this.circles)  
        }  
    }  
</script>  

<style lang="less" scoped>  
    .content{  
        width: 100%;  
        height: 100vh;  
        overflow: hidden;  
    }  
</style>

操作步骤:

一直出现

预期结果:

解决报错,能画圆

实际结果:

提交bug

bug描述:

地图组件,画圆报错

2021-04-02 17:10 负责人:DCloud_UNI_GSQ 分享
已邀请:
DCloud_UNI_GSQ

DCloud_UNI_GSQ

其他端是否正常?

  • XLL (作者)

    都不正常

    2021-05-26 17:34

  • DCloud_UNI_GSQ

    回复 XLL: 小程序也不正常吗?

    2021-05-28 17:27

  • XLL (作者)

    回复 DCloud_UNI_GSQ: 这个很容易复现的

    2021-05-31 14:47

  • DCloud_UNI_GSQ

    回复 XLL: 全都不正常的话,大概率是你用法问题。你再检查检查。

    2021-06-02 16:47

  • XLL (作者)

    回复 DCloud_UNI_GSQ: 代码就这么点,文档上copy的,怎么用错?确实是有问题,你们就不能去试一试吗?

    2021-06-03 15:09

该问题目前已经被锁定, 无法添加新回复