uniapp map地图点击事件

干货

// dom结构


//对应的js
export default {
		data(){
			return{
				latitude: 35.303716,
				longitude: 113.9269,
				covers: [{
					id:0,
					latitude: 35.303716,
					longitude: 113.9269,
					iconPath: '/static/images/tabBar/nearby-active.png'
				}],
				controls:[
					{
						clickable:true //点击事件
					}
				]
            }
        }
}

你可能感兴趣的:(uni-app,map)