不使用自定义icon
不使用icon属性,使用leaflet通用实例的默认图标,不发生偏移。
使用自定义icon
我们在使用leaflet给地图添加marker时自定义了marker的icon属性。
var myIcon = L.icon({...})
声明的myicon对象中使用了iconSize定义了icon图标的像素大小。
iconSize: [40, 40],
The coordinates of the “tip” of the icon (relative to its top left
corner). The icon will be aligned so that this point is at the
marker’s geographical location. Centered by default if size is
specified, also can be set in CSS with negative margins.
这里定义了一个40*40大小的图标,默认加入地图定位点的是其左上角的锚点。就是说在这个图标加入地图时,它的左上角的锚点会覆盖在地理坐标[50.505, 30.57]的定位点上,然后扩展他图标的其他像素。
我这个图标需要加入的锚点是图标的底部中心。
所以要修改锚点坐标,即将锚点从左上修改为下中。
定义icon的iconAnchor
iconAnchor: [20, 40],
为什么是20而不是-20呢?
因为我们的地图是不改变位置的,改变的是图标的位置。
所以改变的是图标的锚点位置。
讲道理我也不懂,我也觉得应该下中往左上移的话,应该是[-20,40]。
不过测试过了,是[20,40]
完整代码
L.icon代码
var myIcon = L.icon({
iconUrl: 'my-icon.png',
iconSize: [40, 40],
iconAnchor: [20, 40],
popupAnchor: [-3, -76],
shadowUrl: 'my-icon-shadow.png',
shadowSize: [68, 95],
shadowAnchor: [22, 94]
});
L.marker([50.505, 30.57], {icon: myIcon}).addTo(map);