zoukankan      html  css  js  c++  java
  • 小程序-地图-定位在我此时的位置

    wxml:

    <map id="mymap" latitude="{{latitude}}" longitude="{{longitude}}" markers="{{markers}}"></map>

    wxss:

     #mymap{100%;height:100vh}

    js:

    Page({

          data:{

               latitude:"",

               longitude:"",

               markers:[]

          },

         onLoad:function(){

                wx.getLoction({

                         type:'gcj02',

                          success:function(res){

                                       var latitude=res.latitude

                                        var longitude=res.longitude

                                        var speed=res.speed

                                        var accuracy=res.accuracy

                                         console.log("latitude"+latitude)

                                         console.log("longitude"+longitude)

                                         console.log("speed"+speed)

                                         console.log("accuracy"+accuracy)

                                          wx.openLocation({

                                                   latitude:latitude,

                                                    longitude:longitude,

                                                    scale:28

                                           })

                           }

                })

         }

    })

  • 相关阅读:
    继续OI
    [WARNING]考前必读?!
    近些日的总结吧
    续上文
    又是一年NOIP然鹅我考的是高数(虽然我没打并且内容与NOIP无关)(手动滑稽)
    轮船问题(DP基础)
    NOIP2016报零记
    字符数组
    HA-0302 退役
    各种模板(part 2)
  • 原文地址:https://www.cnblogs.com/liuqingxia/p/7699439.html
Copyright © 2011-2022 走看看