uniapp使用地图

时间:2022-05-14 00:56:23

<!-- 方法一:点击小程序map地图插件跳转到app中打开 -->

<map @click="mapFun" class='map' :latitude="latitude" :longitude="longitude" :markers="covers" />

 

<!-- 方法二:点击button等按钮打开 -->

<button type="default" @click="mapFun">唤醒题图</button>


<!-- js中 -->

// 高德地图、腾讯、百度等地图中打开

data(){

   return{

    latitude: 39.909,

 longitude: 116.39742,

 covers: [{

  latitude: 39.909,

  longitude: 116.39742,

  width:'50rpx'

 }]

   }

},

methods:{

   mapFun() {

    uni.openLocation({

 latitude: this.latitude,, //纬度 - 目的地/坐标点

  longitude: this.longitude,, //经度 - 目的地/坐标点

 name: "电脑城",

 address: "重庆九龙坡"

    });

  }

}