vue引入网络第三方js(引入高德地图为例)

1.界面引入组件remoteload

<!--
  描述:拖放地图组件,默认尺寸是 500 * 300

  接收属性参数:
    lat: 纬度
    lng: 经度

  自定义事件:
    drag: 拖放完成事件

  示例:
    <mapDrag @drag="dragMap" lat="22.574405" lng="114.095388"></mapDrag>
-->
<template>
  <div class="m-map">
    <div class="search" v-if="placeSearch">
    </div>
    <div id="js-container" class="map"></div>
  </div>
</template>

<script>
  import remoteLoad from '@/assets/js/remoteLoad.js'
  export default {
    data () {
      return {
        mapKey: '....', //高德地图的key
        mapCityName: '全国',
        placeSearch: null,
        dragStatus: false,
        AMapUI: null,
        AMap: null
      }
    },
    props: {
      searchKeyVal: String,
      lat: Number,
      lng: Number
    },
    watch: {
      searchKeyVal () {
        if (this.searchKeyVal === '') {
          this.placeSearch.clear()
        }
        this.handleSearch()
      }
    },
    methods: {
      // 搜索
      handleSearch () {
        if (this.searchKeyVal) {
          this.placeSearch.search(this.searchKeyVal)
        }
      },
      // 实例化地图
      initMap () {
        // 加载PositionPicker,loadUI的路径参数为模块名中 'ui/' 之后的部分
        let AMapUI = this.AMapUI = window.AMapUI
        let AMap = this.AMap = window.AMap

        let $this = this

        let mapObj = new AMap.Map('js-container')
        mapObj.plugin('AMap.Geolocation', function () {
          let geolocation = new AMap.Geolocation({
            enableHighAccuracy: true, // 是否使用高精度定位,默认:true
            timeout: 10000,          // 超过10秒后停止定位,默认:无穷大
            maximumAge: 0,           // 定位结果缓存0毫秒,默认:0
            convert: true,           // 自动偏移坐标,偏移后的坐标为高德坐标,默认:true
            showButton: true,        // 显示定位按钮,默认:true
            buttonPosition: 'LB',    // 定位按钮停靠位置,默认:'LB',左下角
            buttonOffset: new AMap.Pixel(10, 20), // 定位按钮与设置的停靠位置的偏移量,默认:Pixel(10, 20)
            showMarker: true,        // 定位成功后在定位到的位置显示点标记,默认:true
            showCircle: true,        // 定位成功后用圆圈表示定位精度范围,默认:true
            panToLocation: true,     // 定位成功后将定位到的位置作为地图中心点,默认:true
            zoomToAccuracy: true      // 定位成功后调整地图视野范围使定位位置及精度范围视野内可见,默认:false
          })
          mapObj.addControl(geolocation)
          geolocation.getCurrentPosition()
          AMap.event.addListener(geolocation, 'complete', function (data) {
            $this.complete(data, AMapUI, AMap)
          }) // 返回定位信息
          AMap.event.addListener(geolocation, 'error', function (data) {
            $this.$http({
              url: 'https://ipinfo.io/geo',
              method: 'GET',
              body: {}
            }).then(function (response) {  // 请求成功回调
              var loc = response.data.loc.split(',')
              var coords = {
                position: {
                  lat: loc[0],
                  lng: loc[1]
                }
              }
              $this.complete(coords, AMapUI, AMap)
            }, function (error) {
              // 请求失败回调
              this.errorResponse(error)
            })
            console.log(data)
          }) // 返回定位出错信息
        })
      },
      complete (data, AMapUI, AMap) {
        let lat = this.lat === '' || this.lat === 0 || this.lat === undefined ? data.position.lat : this.lat
        let lng = this.lng === '' || this.lng === 0 || this.lng === undefined ? data.position.lng : this.lng
        AMapUI.loadUI(['misc/PositionPicker'], PositionPicker => {
          let mapConfig = {
            zoom: 16,
            cityName: this.mapCityName,
            center: [lng, lat]
          }
          let map = new AMap.Map('js-container', mapConfig)
          // 加载地图搜索插件
          AMap.service('AMap.PlaceSearch', () => {
            this.placeSearch = new AMap.PlaceSearch({
              pageSize: 5,
              pageIndex: 1,
              city: this.mapCityName,
              map: map
            })
            this.placeSearch.search(this.searchKeyVal, function (status, result) {
              console.log(result)
            })
          })
          // 启用工具条
          AMap.plugin(['AMap.ToolBar'], function () {
            map.addControl(new AMap.ToolBar({
              position: 'RB'
            }))
          })
          // 创建地图拖拽
          let positionPicker = new PositionPicker({
            mode: 'dragMap', // 设定为拖拽地图模式,可选'dragMap'、'dragMarker',默认为'dragMap'
            map: map, // 依赖地图对象
            iconStyle: { // 自定义外观
              url: '', // 图片地址
              size: [48, 48],  // 要显示的点大小,将缩放图片
              ancher: [24, 40] // 锚点的位置,即被size缩放之后,图片的什么位置作为选中的位置
            }
          })
          // 拖拽完成发送自定义 drag 事件
          positionPicker.on('success', positionResult => {
            // 过滤掉初始化地图后的第一次默认拖放
            if (!this.dragStatus) {
              this.dragStatus = true
            } else {
              this.$emit('drag', positionResult)
            }
          })
          // 启动拖放
          positionPicker.start()
        })
      }
    },
    created () {
      // 已载入高德地图API,则直接初始化地图
      if (window.AMap && window.AMapUI) {
        this.initMap()
        // 未载入高德地图API,则先载入API再初始化
      } else {
        // 载入高德地图和UI组件
        Promise.all([
          remoteLoad('https://webapi.amap.com/maps?v=1.3&key=' + this.mapKey),
          remoteLoad('https://webapi.amap.com/ui/1.0/main.js')
        ]).then(() => {
          this.initMap()
        })
      }
    }
  }
</script>

<style lang="css">
  .m-map{ min-height: 400px; position: relative; }
  .m-map .map{ width: 100%!important; height: 400px!important; }
  .m-map .search{ position: absolute; top: 10px; left: 10px; width: 285px; z-index: 1; }
  .m-map .search input{ width: 180px; border: 1px solid #ccc; line-height: 20px; padding: 5px; outline: none; }
  .m-map .search button{ line-height: 26px; background: #fff; border: 1px solid #ccc; width: 50px; text-align: center; }
  .m-map .result{ max-height: 300px; overflow: auto; margin-top: 10px; }
</style>


2.界面引入代码

<dragMap @drag="dragMap" :lat="defaultLatitude" :lng="defaultLongitude" :searchKeyVal="defaultSearchAddress"></dragMap>


3.remoteload.js

export default function remoteLoad (url, hasCallback) {
  return createScript(url)
  /**
   * 创建script
   * @param url
   * @returns {Promise}
   */
  function createScript (url) {
    var scriptElement = document.createElement('script')
    document.body.appendChild(scriptElement)
    var promise = new Promise((resolve, reject) => {
      scriptElement.addEventListener('load', e => {
        removeScript(scriptElement)
        if (!hasCallback) {
          resolve(e)
        }
      }, false)

      scriptElement.addEventListener('error', e => {
        removeScript(scriptElement)
        reject(e)
      }, false)

      if (hasCallback) {
        window.____callback____ = function () {
          resolve()
          window.____callback____ = null
        }
      }
    })

    if (hasCallback) {
      url += '&callback=____callback____'
    }

    scriptElement.src = url

    return promise
  }

  /**
   * 移除script标签
   * @param scriptElement script dom
   */
  function removeScript (scriptElement) {
    document.body.removeChild(scriptElement)
  }
}

  • 5
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值