需求:1.指定地点为“成都工业学院”  

wxml:

<map id=”mymap” show-location longitude=”103.892736″ latitude=”30.793032″ scale=”14″ markers=”{{markers}}”>

 js:

Page({

    data:{

          markers:[{

                  id: “0”,      //标记点id

                  iconPath: “../images/mapicon.png”,    //标记点图标

                  longitude: 103.892736,    //中心经度

                  latitude: 30.793032,         //中心纬度

                  width:30,              //标记点图标宽

                  height:30             //标记点图标高

           }]

    }

})

版权声明:本文为liuqingxia原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/liuqingxia/p/7699427.html