我有兴趣在R中使用Leaflet时制作自定义图标。
documentation有一个很好的例子,但在尝试使用它时,我意识到当地图改变大小时,无法允许自定义标记调整大小。
由于尺寸是参数之一并且是固定的(iconWidth = 38, iconHeight = 95,
),显然标记将保持一致的大小,因为它下面的地图的缩放更改。
greenLeafIcon <- makeIcon(
iconUrl = "http://leafletjs.com/docs/images/leaf-green.png",
iconWidth = 38, iconHeight = 95,
iconAnchorX = 22, iconAnchorY = 94,
shadowUrl = "http://leafletjs.com/docs/images/leaf-shadow.png",
shadowWidth = 50, shadowHeight = 64,
shadowAnchorX = 4, shadowAnchorY = 62
)
是否有任何黑客/想法/协议可让自定义图标随缩放一起调整大小?