小程序-地图(腾讯地图)

Posted 亮子zl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序-地图(腾讯地图)相关的知识,希望对你有一定的参考价值。

map.wxml

经度;维度;缩放比例;样式;显示位置

<!--pages/map/map.wxml-->
<!--地图组件-->
<!--经度;维度;缩放比例;样式;显示位置-->
<map id="map"
 longitude="116.300901" 
 latitude="39.916085" 
 scale="14" 
 style="width: 100%; height: 600rpx;" 
 show-location="true"
 controls="controls"
 polyline="polyline"
 >
</map>

map.ts

data: 
    //折线线段
    polyline:[ //折线
         points:[  //坐标点
           longitude:116.300901,latitude:39.916085,
           longitude:116.316685,latitude:39.913702
         ],
         color:"#fc0",
         width:3
      
    ],
    //地图上显示控件:图片
      controls:[
        id:0, //控件id数值
        iconPath:"/images/blue.png",
        position: //控件坐标
          left:110, //左侧位置
          top:200, //顶端位置
          width:15, //宽度和高度
          height:15
        
      ]
  ,

以上是关于小程序-地图(腾讯地图)的主要内容,如果未能解决你的问题,请参考以下文章

小程序-地图(腾讯地图)

小程序-地图(腾讯地图)

小程序地图uniapp开发微信小程序,显示地图功能,且点击后打开高德或腾讯地图。

微信小程序+腾讯地图 获取定位与地图选点插件

家政服务小程序实战教程05-集成腾讯地图

家政服务小程序实战教程05-集成腾讯地图