uni-app map iOS真机不显示多边形polygon

本文介绍如何在uni-app中利用nvue解决iOS真机地图组件显示问题,包括marker点击事件及多边形、折线的绘制,并提供完整代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

uni-app map iOS真机不显示多边形polygon?marker无法点击?
答案:
用 nvue

nvue不显示markers?
答案:在marker(point点中添加id)

最终demo代码:
gaoDeMapNvue.nvue

<template>
	<div>
		<view class="page-body">
			<view class="page-section page-section-gap">
				<map style="width: 375px; height: 667px;" :latitude="latitude" :longitude="longitude" :markers="covers"
					:polyline="polylineData" :polygons="polygonData" :scale=14>
				</map>
			</view>
		</view>
	</div>
</template>

<script>
	export default {
		data() {
			return {
				latitude: 39.90931,
				longitude: 116.39742,
				covers: [{
					id: 0, // 使用 marker点击事件 需要填写id
					title: 'map',
					latitude: 39.96491,
					longitude: 116.39742,
					iconPath: '/static/madLocal.png',
					content: '大家好啊',
					title: '9999999999999'
				}, {
					id: 1, // 使用 marker点击事件 需要填写id
					title: 'map',
					latitude: 39.89931,
					longitude: 116.39742,
					iconPath: '/static/logo.png',
					title: '9999999999999',
				}],
				markers: [{}, {}, {}],
				polylineData: [{
					points: [{
							latitude: 39.91931,
							longitude: 116.39742
						},
						{
							latitude: 39.91931,
							longitude: 116.51
						}
					],
					color: "#0000AA",
					width: 5
				}],
				polygonData: [{
					points: [{
							latitude: 39.90951,
							longitude: 116.39742
						},
						{
							latitude: 39.90951,
							longitude: 116.51
						}, {
							latitude: 39.80931,
							longitude: 116.51
						}, {
							latitude: 39.90931,
							longitude: 116.39742
						}
					],
					strokeColor: "#007AFF",
					fillColor: "#007A33",
					strokeWidth: 5,
					width: 50,
					zIndex: 0,
					level: 0
				}]
			}
		}
	}
</script>

<style>

</style>

效果图(小程序和iOS真机) (包含自定义图标,折线,多边形遮罩层)
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值