• 微信小程序


     

     

    1. 登录公众号平台

    https://mp.weixin.qq.com/

     

    2. 设置->第三方服务->添加插件->输入插件名称->申请

     

    3. 项目中使用

    3.1 app.json配置

      

     

    3.2 项目中配置wxml,json,js

    wxml

    1 <map-route route-info="{{routeInfo}}"></map-route>

     

    json

    1 {
    2   "usingComponents": {
    3     "map-route": "plugin://myPlugin/mapRoute"
    4   }
    5 }

     

    js

     1 Page({
     2   data: {
     3     routeInfo: {
     4       startLat: 0.0,    //起点经度 选填
     5       startLng: 0.0,    //起点纬度 选填
     6       startName: "未获取到起点",   // 起点名称 选填
     7       endLat: 0.0,    // 终点经度必传
     8       endLng: 0.0,  //终点纬度 必传
     9       endName: "未获取到终点",  //终点名称 必传
    10       mode: "car"  //算路方式 选填
    11     }
    12   },
    13   onLoad: function (options) {
    14     let _page = this;
    15 
    16     console.log(options)
    17 
    18     _page.setData({
    19       routeInfo: {
    20         startLat: parseFloat(options.latStart),    //起点经度 选填
    21         startLng: parseFloat(options.lngStart),    //起点纬度 选填
    22         startName: options.get_address,   // 起点名称 选填
    23         endLat: parseFloat(options.latEnd),    // 终点经度必传
    24         endLng: parseFloat(options.lngEnd),  //终点纬度 必传
    25         endName: options.give_address,  //终点名称 必传
    26         mode: "car"  //算路方式 选填
    27       }
    28     })
    29   },
    30   onShow: function () {
    31     let plugin = requirePlugin("myPlugin");
    32   }
    33 })

     

     关于插件使用说明,请看官方文档:https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx5bc2ac602a747594&token=363067683&lang=zh_CN

      

  • 相关阅读:
    RocketMQ简介
    redis简介
    netcat
    NOI2018 归程
    图论小专题B
    CF558E A Simple Task
    图论小专题A
    初等网络流初步
    2019炎德杯知识能力竞赛 游记
    POJ2176 Folding
  • 原文地址:https://www.cnblogs.com/cisum/p/9759754.html
Copyright © 2020-2023  润新知