hb浏览器测试能显示地图坐标,ios真机测试出不来,大佬们有知道为什么的吗

<map :latitude="latitude" :longitude="longitude" :markers="covers" :style="view_class">
			</map>


"longitude": '116.419374',
				"latitude": '39.995477',
				//"enablesatellite": 'true', //是否开启卫星图
				covers: [{
					iconPath: '/static/logo.png',
					longitude: 116.419374,
					latitude: 39.995477,
					callout: { //自定义标记点上方的气泡窗口 点击有效  
						content: "五矿大厦", //文本
						color: '#000', //文字颜色
						fontSize: 14, //文本大小
						borderRadius: 100, //边框圆角
						bgColor: '#fff', //背景颜色
						display: 'BYCLICK', //常显
					},
				}],

 

111