当前位置:首页 > 小程序 > 正文内容

小程序接地图

tigon4年前 (2021-08-16)小程序3199

longitude latitude是中心经纬度
markers 是所有打点的经纬度,微信地图也是包了高德地图

<map wx:if="{{mapShow}}" class="map" id="map"  scale="{{scale}}" bindregionchange="moveMapFn"  bindanchorpointtap="bindanchorpointtapFn" bindcallouttap="bindcallouttapFn" longitude="{{longitude}}" bindmarkertap="bindmarkertapFn" latitude="{{latitude}}" markers="{{markers}}">
      <view class="cover-view">
          <view class="container">
            <view class="flex-wrp" style="flex-direction:row;">
              <image class="center_point"  src="../../resources/images/map/current_location.png"></image>
            </view>
          </view>
        </view>
    </map>

let that = this;
    let keywords = e.detail.value; 
    console.log(keywords)
    let key = getApp().globalData.mapSDK;
    console.log(key)

    let myAmapFun = new amapFile.AMapWX({key: key});
    myAmapFun.getInputtips({
      city:this.data.city_name,
      keywords: keywords,
      // location: '40.22077,116.23128',
      success: function(data){
        if(data && data.tips){
          let tipsData=JSON.parse(JSON.stringify(data.tips))
          for(let i=0;i<tipsData.length;i++){
            tipsData[i].name=tipsData[i].name.replace(new RegExp(keywords, 'g'),`<span style="color:#64B5FF">${keywords}</span>`)
          }
          console.log(tipsData)
          that.setData({
            tips: tipsData,
            tipsData:data.tips,
            isstart:false
          });
          console.log(data.tips)

        }

      }
    })

版权声明:本文由Web学习之路发布,如需转载请注明出处。

本文链接:https://webge.net/?id=129

“小程序接地图” 的相关文章

小程序-- wx.switchTab({url}) 跳转页面

wx.switchTab({url}) 传页面page地址 注意,页面会刷新,那下面导航如何选中呢? 1,在app.js里定义全局变量 globalData: { selected: 0, }, 2,每个页面引入全局变量 getApp().globalData.se...

小程序如果以打包浏览的时候太大怎么处理---分包

小程序如果以打包浏览的时候太大怎么处理---分包

小程序如果以打包浏览的时候太大怎么处理—分包 类似这样的目录来分包处理 app.json需要做分包路径处理 当如果用跳转路径分包路径的时候例如...

小程序自定义下拉刷新

<scroll-view style='height:100%' scroll-y='{{!isindrag}}' bindscroll='scorll'> <view class='column' bindtouc...

小程序多层展示收起

小程序多层展示收起

<view class='list_box' wx:for='{{list}}' wx:key='this' wx:for-item='parentItem' wx:for-index='parentIndex'...

小程序页面开启下拉刷新不回弹问题

onPullDownRefresh: function () { // 停止下拉动作 wx.stopPullDownRefresh(); //添加这句就可以了 if(this.data.searchContent){ this.setSearchListDataFn(th...

小程序验证插件的使用 WxValidate

整个文件可以到git下载 import WxValidate from ‘../../utils/WxValidate’;地址自己根据目录正确引入 我的需求是所有数据都是动态后台返回的以下是使用 onload:function(){ this.initValidate()//验证规则...