addPolyline() {
let AMap = this.AMap
let polyline = new AMap.Polyline({
// map: this.map,
// polyline 路径
path: [
new AMap.LngLat("119.368904", "30.913423"),
new AMap.LngLat("119.382122", "30.901176"),
],
strokeColor: '#F3D930',
strokeOpacity: 1,
strokeWeight: 7,
showDir: true, //是否延路径显示白色方向箭头,默认false。建议折线宽度大于6时使用
// strokeStyle: 'dashed',
// isOutline: true, // 是否显示描边,默认false
// borderWeight: 2,
// outlineColor
lineJoin: 'round', // 折线拐点的绘制样式,默认值为'miter'尖角,其他可选值:'round'圆角、'bevel'斜角
lineCap: 'round', // 折线两端线帽的绘制样式,默认值为'butt'无头,其他可选值:'round'圆头、'square'方头
// draggable: true,
// strokeDasharray: [2, 5, 3] //表示10个像素的实线和10个像素的空白
})
this.map.add(polyline);
}
initAMap() {
AMapLoader.load({
key: "", // 申请好的Web端开发者Key,首次调用 load 时必填
version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
plugins: ["AMap.Scale", "AMap.ToolBar", "AMap.ControlBar", 'AMap.Geocoder', 'AMap.Marker',
'AMap.CitySearch', 'AMap.Geolocation', 'AMap.AutoComplete', 'AMap.InfoWindow', 'AMap.LineSearch'], // 需要使用的的插件列表,如比例尺'AMap.Scale'等
}).then((AMap) => {
this.AMap = AMap
// 获取到作为地图容器的DOM元素,创建地图实例
this.map = new AMap.Map("amapcontainer", { //设置地图容器id
resizeEnable: true,
viewMode: "2D", // 使用3D视图
zoomEnable: true, // 地图是否可缩放,默认值为true
dragEnable: true, // 地图是否可通过鼠标拖拽平移,默认为true
doubleClickZoom: true, // 地图是否可通过双击鼠标放大地图,默认为true
zoom: 10, //初始化地图级别
center: [119.858881, 30.694178], // 初始化中心点坐标
mapStyle: 'amap://styles/',
// mapStyle: "amap://styles/darkblue", // 设置颜色底层
})
this.addPolyline()
}).catch(e => {
console.log(e)
})
},