在此处输入代码我正在尝试在带有“传单”的标记上显示标签。但是,我不能放置标签,以使它们不会相互重叠。
有没有办法避免或解决这个众所周知的问题?
是否可以从启动的应用程序中手动进行放置?
感谢您的帮助
我试图将标签置于“自动”状态,当标签很多或在一张小地图上都没有成功
enter code hereleaflet(points) %>% addTiles( urlTemplate = "https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}.png'")%>%
addTiles(urlTemplate = 'https://maps.heigit.org/openmapsurfer/tiles/adminb/webmercator/{z}/{x}/{y}.png')%>%
addMarkers(lng = ~longitudes, lat = ~latitudes,
layerId = ~Ville, label = ~paste(Ville,":",labels),
labelOptions = labelOptions(noHide=T,direction = 'auto',textsize = "8px"),
icon = list( iconUrl= iconD,iconSize = iconS)) %>%
addScaleBar(position = "bottomleft")