欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

bing Map 在vue项目中的使用详解

程序员文章站 2022-05-25 22:08:51
写在最前面 拥有全球数据库国内好像就只有百度地图有,高德、搜狗、腾讯的都不行,但是由于百度地图的数据更新不及时,所以在做相关项目要用到国外数据的时候,最好还是推荐使用bi...

写在最前面

拥有全球数据库国内好像就只有百度地图有,高德、搜狗、腾讯的都不行,但是由于百度地图的数据更新不及时,所以在做相关项目要用到国外数据的时候,最好还是推荐使用bingmap。

bing map 使用教程(基础)

参考文档:bing map 官方教程

bing map 初始化

引入bing map资源

<script type='text/javascript' src='http://www.bing.com/api/maps/mapcontrol?callback=getmap&key=[your_bing_maps_key]' async defer></script>

初始化地图

<div id="mymap"></div>
<script type='text/javascript'>
 function getmap()
 {
  var map = new microsoft.maps.map('#mymap');
  //add your post map load code here.
 }
</script>

设置地图控制参数

常用控制参数
branch
加载地图sdk的哪个分支:release(默认)、experimental
callback
地图控制脚本加载完成后的回调(默认:getmap)
key
用户使用的userkey(详情)
setlang
指定用于地图标签和导航控件的语言
常用:*(zh-cn)、中国香港(zh-hk)、简体中文(zh-hans)、中国*(zh-tw)、英文-英国(en-gb)、英文-美国(en-us)
setmkt(详情)
ur(详情)

给bing map添加地图事件(参考)

// 核心代码-demo
 microsoft.maps.events.addhandler(你的地图名称, 触发地图事件名称, function() { 触发的事件 });
 // 常用实例
 //add view change events to the map.
 // 视图更改事件
 microsoft.maps.events.addhandler(map, 'viewchangestart', function () { highlight('mapviewchangestart'); });
 microsoft.maps.events.addhandler(map, 'viewchange', function () { highlight('mapviewchange'); });
 microsoft.maps.events.addhandler(map, 'viewchangeend', function () { highlight('mapviewchangend'); });
 //add mouse events to the map.
 // 鼠标事件
 microsoft.maps.events.addhandler(map, 'click', function () { highlight('mapclick'); });
 microsoft.maps.events.addhandler(map, 'dblclick', function () { highlight('mapdblclick'); });
 microsoft.maps.events.addhandler(map, 'rightclick', function () { highlight('maprightclick'); });
 microsoft.maps.events.addhandler(map, 'mousedown', function () { highlight('mapmousedown'); });
 microsoft.maps.events.addhandler(map, 'mouseout', function () { highlight('mapmouseout'); });
 microsoft.maps.events.addhandler(map, 'mouseover', function () { highlight('mapmouseover'); });
 microsoft.maps.events.addhandler(map, 'mouseup', function () { highlight('mapmouseup'); });
 microsoft.maps.events.addhandler(map, 'mousewheel', function () { highlight('mapmousewheel'); });
 //add addition map event handlers
 microsoft.maps.events.addhandler(map, 'maptypechanged', function () { highlight('maptypechanged'); });

bing map 添加图钉(详情)

基本图钉示例

function getmap() {
 var map = new microsoft.maps.map('#mymap', {
  credentials: 'your bing maps key',
  center: new microsoft.maps.location(47.6149, -122.1941)
 });
 var center = map.getcenter();
 //create custom pushpin
 // 创建一个图钉
 var pin = new microsoft.maps.pushpin(center, {
  // demo_1
  title: 'microsoft', // 图钉的标题
  subtitle: 'city center', // 图钉主体文字
  text: '1' // 图钉内的文字
  // demo_2
  color: 'red', // 纯色图钉
 });
 //add the pushpin to the map
 map.entities.push(pin);
}

demo_1

bing Map 在vue项目中的使用详解 

demo_2

bing Map 在vue项目中的使用详解 

添加自定义图片图钉(详情)

function getmap() {
 var map = new microsoft.maps.map('#mymap',
 {
  credentials: 'you bing maps key'
 });
 var center = map.getcenter();
 //create custom pushpin
 var pin = new microsoft.maps.pushpin(center, {
  icon: 'images/poi_custom.png', // 自定义图片路径
  anchor: new microsoft.maps.point(12, 39)
 });
 //add the pushpin to the map
 map.entities.push(pin);
}

自定义图标的图钉

bing Map 在vue项目中的使用详解 

bing map 给图钉添加事件

核心代码

//create a pushpin.
 var pushpin = new microsoft.maps.pushpin(map.getcenter());
 map.entities.push(pushpin);
 //add mouse events to the pushpin.
 // 将自定义方法及鼠标事件添加到图钉上面
 microsoft.maps.events.addhandler(pushpin, 'click', function () { highlight('pushpinclick'); });
 microsoft.maps.events.addhandler(pushpin, 'mousedown', function () { highlight('pushpinmousedown'); });
 microsoft.maps.events.addhandler(pushpin, 'mouseout', function () { highlight('pushpinmouseout'); });
 microsoft.maps.events.addhandler(pushpin, 'mouseover', function () { highlight('pushpinmouseover'); });
 microsoft.maps.events.addhandler(pushpin, 'mouseup', function () { highlight('pushpinmouseup'); });

bing map 给图钉添加hover样式

其核心还是给bing map的图钉添加事件,通过事件修改图钉的样式

// demo
var defaultcolor = 'blue';
var hovercolor = 'red';
var mousedowncolor = 'purple';
var pin = new microsoft.maps.pushpin(map.getcenter(), {
  color: defaultcolor
});
map.entities.push(pin);
microsoft.maps.events.addhandler(pin, 'mouseover', function (e) {
  e.target.setoptions({ color: hovercolor });
});
microsoft.maps.events.addhandler(pin, 'mousedown', function (e) {
  e.target.setoptions({ color: mousedowncolor });
});
microsoft.maps.events.addhandler(pin, 'mouseout', function (e) {
  e.target.setoptions({ color: defaultcolor });
});

给图钉添加hover样式

bing Map 在vue项目中的使用详解 

bing map 固定锚点

开发人员在使用自定义图钉时遇到的最常见问题之一是,当他们缩放地图时,看起来好像他们的图钉正在漂移到或离开它所要锚定的位置。这是由于图钉选项中的锚点值不正确。锚点指定图像的哪个像素坐标相对于图像的左上角应与图钉位置坐标重叠。

常见配置参考

bing map 在vue中使用

vue引入bing map可能会遇到的问题

由于vue一般引用第三方插件是用import的方式进行的,所以的在html中使用script标签引入bing map sdk会出现两种问题

1.在控制台会报错:mirosorft is not defined

2.vue-cli会报错:mirosorft is not defined

这里的原因是由于异步加载,所以在调用"mirosorft"的时候可能sdk并没有引用成功

解决“mirosorft is not defined”的错误

文档参考

解决“mirosorft is not defined”的错误,只要在项目中保证调用地图之前,能够正确引入相关工具类就行了。

// bing map init devtools
export default {
 init: function (){
  console.log("初始化bing地图脚本...");
  // bing map key
  const binguesrkey = '你的bingmap key';
  const bingmap_url = 'http://www.bing.com/api/maps/mapcontrol?callback=getmap&key=' + binguesrkey;
  return new promise((resolve, reject) => {
   if(typeof microsoft !== "undefined") {
    resolve(microsoft);
    return true;
   }
   // 插入script脚本
   let scriptnode = document.createelement("script");
   scriptnode.setattribute("type", "text/javascript");
   scriptnode.setattribute("src", bingmap_url);
   document.body.appendchild(scriptnode);
   // 等待页面加载完毕回调
   let timeout = 0;
   let interval = setinterval(() => {
    // 超时10秒加载失败
    if(timeout >= 20) {
     reject();
     clearinterval(interval);
     console.error("bing地图脚本初始化失败...");
    }
    // 加载成功
    if(typeof microsoft !== "undefined") {
     resolve(microsoft);
     clearinterval(interval);
     console.log("bing地图脚本初始化成功...");
    }
    timeout += 1;
   }, 500);
  });
 }
} 
// bing map vue
import bingmap from './**/bing-map';
bingmap.init()
 .then((microsoft) => {
   console.log(microsoft)
   console.log("加载成功...")
   // 开始地图操作
 })

集成bing map组件到vue中

需要达到的功能

在vue项目中成功加载bing map (完成)
当点击bing map的时候,返回点击点的经纬度 (完成)
子组件触发事件返回参数到父组件
当已有经纬度的时候,加载bingmap自动显示其经纬度所在的位置并设置图钉 (待完成)
子组件触发事件返回参数到父组件

实现原理

vue-$meit

核心代码

// 子组件
<template>
<div @click="iclick"></div>
</template>
methods:{
 iclick(){
  let data = {
   a:'data'
  };
  this.$emit('ievent', data1, 'data2str');
 }
}
// 父组件
<i-template @ievent = "ievent"></i-template>
methods:{
 ievent(...data){
  console.log('alldata:',data); // data为包含传过来所有数据的数组,第一个元素是对象,第二个元素是字符串
 }
}

封装bing map通用组件

// 核心代码
<template>
 <div class="map-container">
  <div id="localmap"></div>
 </div>
</template>
<script>
import initbingmap from './initmap.js'
export default {
 data () {
  return {
   lngnum: null, // 经度
   latnum: null, // 纬度
  }
 },
 created: function () { 
  let _this = this;
  initbingmap.init()
  .then((microsoft) => {
   console.log(microsoft)
   console.log("加载成功...")
   _this.initmap();
  })
 },
 methods: {
  initmap () {
   let _this = this;
   let map = new microsoft.maps.map('#localmap', {
    credentials: 'agzeobkgvmpdztfuga7_6gkahh7cxhksfitqlbvi55x-qlzlh1rsjhd1da9bfphd'
   });
   microsoft.maps.events.addhandler(map, 'click', _this.getclicklocation);
  },
  getclicklocation (e) {
   //若点击到地图的标记上,而非地图上
   let [_this, loc] = [this, null];
   if (e.targettype == 'pushpin') {
    loc = e.target.getlocation();
   }
   //若点击到地图上
   else {
    var point = new microsoft.maps.point(e.pagex, e.pagey);
    loc = e.target.trypixeltolocation(point, microsoft.maps.pixelreference.page);
   }
   console.log(loc.latitude+", "+loc.longitude);
   console.log(loc);
   _this.lngnum = loc.longitude;
   _this.latnum = loc.latitude;
   let data = {
    lngnum: _this.lngnum,
    latnum: _this.latnum
   }
   this.$emit('getlocationnums',data);
  },
 }
}
</script>
<style scoped>
 .map-container {
  width: 100%;
  height: 400px;
  border: 1px solid #000;
 }
</style>
在组件中调用bing map通用组件
// 引入bingmap
import bingmapslayer from 'bingmap.vue'
// component中定义
components: {
 bingmapslayer
},
// template中使用
<bing-maps-layer @getlocationnums="getlocationnums"></bing-maps-layer>
// 定义触发点击标记返回经纬度的事件函数
getlocationnums (...data) {
 let _this = this;
 console.log('click');
 console.log(data);
 // 这里的data中即子组件bingmap返回的点击获取的经纬度值
},

总结

以上所述是小编给大家介绍的bing map 在vue项目中的使用详解,希望对大家有所帮助