微信小程序--地图导航

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  
    })  
  }  
})  

 

posted @ 2017-08-17 20:33  爱吃醋的工程师  阅读(225)  评论(0编辑  收藏  举报