ari2022
ari2022
  • 发布:2024-04-15 11:39
  • 更新:2024-04-15 11:59
  • 阅读:142

【报Bug】打包ios自定义基座,map组件设置markers的width和height失效

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: Windows 10 家庭中文版/22H2/19045.4291

HBuilderX类型: 正式

HBuilderX版本号: 4.08

手机系统: iOS

手机系统版本号: iOS 17

手机厂商: 苹果

手机机型: Iphone 11

页面类型: vue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:
<template>  
    <view class="dis-flex vertical flex-full" style="height: 100vh;">  
        <div class="dis-flex flex">  
            <map style="width: 100%;height: 100%;" :latitude="latitude" :longitude="longitude" :markers="covers">  
            </map>  
        </div>  
        <div class="position dis-flex vertical flex-full">  
            <div class="title dis-flex flex-middle flex-full">  
                <div class="title-icon"></div>  
                车辆位置  
            </div>  
            <div class="des">STAR EV</div>  
        </div>  
    </view>  
</template>  

<script>  
    export default {  
        data() {  
            return {  
                id: 0, // 使用 marker点击事件 需要填写id  
                title: 'map',  
                latitude: 39.909,  
                longitude: 116.39742,  
                covers: [{  
                    latitude: 39.909,  
                    longitude: 116.39742,  
                    iconPath: '../../static/6b31ab4e43873ee3331da865ef15078.png',  
                    width: 40,  
                    height: 53,  
                }, {  
                    latitude: 39.90,  
                    longitude: 116.39,  
                    iconPath: '../../static/6b31ab4e43873ee3331da865ef15078.png',  
                    width: 40,  
                    height: 53,  
                }]  
            }  
        },  
    }  
</script>

操作步骤:

1.对接百度地图

  1. 使用map组件用了markers,设置了maskers大小,在H5中生效,但是配置好app相关地图配置后,打包IOS自定义基座后,发现maskers设置的width和height属性失效,无法设置maskers大小

预期结果:

1.markers可以设置width和height

实际结果:

1.markers设置width和height在ios自定义基座失效

bug描述:

1.对接百度地图

  1. 使用map组件用了markers,设置了maskers大小,在H5中生效,但是配置好app相关地图配置后,打包IOS自定义基座后,发现maskers设置的width和height属性失效,无法设置maskers大小
2024-04-15 11:39 负责人:DCloud_iOS_XHY 分享
已邀请:
困难总比办法多

困难总比办法多

这个属性app要在nvue 页面使用

要回复问题请先登录注册