Commit e40fdf33 by fengfan

new icon

parent 46cd10f6
......@@ -161,11 +161,11 @@ class Map3D {
var icon = new AMap.Icon({
// 图标尺寸
size: new AMap.Size(20, 20),
size: new AMap.Size(40, 40),
// 图标的取图地址
image: 'img/3.png',
image: 'img/icon/人员.png',
// 图标所用图片大小
imageSize: new AMap.Size(20, 20),
imageSize: new AMap.Size(40, 40),
// 图标取图偏移量
imageOffset: new AMap.Pixel(0, 0)
});
......@@ -173,8 +173,8 @@ class Map3D {
map: this.map,
clickable: true,
position: new AMap.LngLat(Number(item.lon), Number(item.lat)), //基点位置
icon: icon || 'img/3.png', //marker图标,直接传递地址url icon||
offset: { x: -10, y: -10 } //相对于基点的位置
icon: icon || 'img/icon/人员.png', //marker图标,直接传递地址url icon||
offset: { x: -20, y: -30 } //相对于基点的位置
});
marker._data = item
......@@ -226,11 +226,11 @@ class Map3D {
var icon = new AMap.Icon({
// 图标尺寸
size: new AMap.Size(20, 20),
size: new AMap.Size(40, 40),
// 图标的取图地址
image: 'img/3.png',
image: 'img/icon/人员.png',
// 图标所用图片大小
imageSize: new AMap.Size(20, 20),
imageSize: new AMap.Size(40, 40),
// 图标取图偏移量
imageOffset: new AMap.Pixel(0, 0)
});
......@@ -238,8 +238,8 @@ class Map3D {
map: this.map,
clickable: true,
position: new AMap.LngLat(Number(lon), Number(lat)), //基点位置
icon: icon || 'img/3.png', //marker图标,直接传递地址url icon||
offset: { x: -10+randomNum, y: -10+randomNum } //相对于基点的位置
icon: icon || 'img/icon/人员.png', //marker图标,直接传递地址url icon||
offset: { x: -20+randomNum, y: -30+randomNum } //相对于基点的位置
});
marker._data = item
......@@ -308,9 +308,9 @@ class Map3D {
}
setEquipmentPoint(item) {
var name = '大喇叭',
imagestr= 'img/喇叭1.png';
if(item.clientStyle==2)name = '显示屏',imagestr= 'img/显示屏1.png';
if(item.clientStyle==3)name = '北斗',imagestr= 'img/卫星1.png';
imagestr= 'img/icon/大喇叭.png';
if(item.clientStyle==2)name = '显示屏',imagestr= 'img/icon/显示屏.png';
if(item.clientStyle==3)name = '北斗',imagestr= 'img/icon/北斗.png';
var html = `
<div id=box2>
<div id=title>${name}</div>
......@@ -358,7 +358,7 @@ class Map3D {
clickable: true,
position: new AMap.LngLat(Number(item.lon), Number(item.lat)), //基点位置
icon: icon || imagestr, //marker图标,直接传递地址url icon||
offset: { x: -20, y: -20 } //相对于基点的位置
offset: { x: -20, y: -30 } //相对于基点的位置
});
marker._data = item
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment