1. 程式人生 > >微信小程序--地圖導航

微信小程序--地圖導航

type cat spa cti 肯德基 pre pen 返回 style

wx.getLocation({  
  type: ‘gcj02‘, //返回可以用於wx.openLocation的經緯度  
  success: function(res) {  
    var latitude = res.latitude  
    var longitude = res.longitude  
    wx.openLocation({  
      latitude: latitude,  
      longitude: longitude,  
      name:"花園橋肯德基",  
     scale: 28  
    })  
  }  
})  

微信小程序--地圖導航