如何在单张标记(圆圈)中输入数字

时间:2017-04-12 13:34:41

标签: r leaflet

我有以下数据框。

head(branches)
# A tibble: 6 × 4
  population_percentage      Lat     Long        Freq
                  <chr>    <dbl>    <dbl>       <dbl>
1                 0.6 % 41.99575 21.43122 0.005875253
2                 0.6 % 41.99575 21.43122 0.006253363
3                 0.8 % 41.99575 21.43122 0.008405683
4                   1 % 41.98857 21.45733 0.009816326
5                 1.1 % 41.99977 21.42708 0.010528918
6                 1.2 % 42.00731 21.36529 0.011750505

使用传单,我绘制地图。

leaflet(branches) %>% addTiles() %>%
  addCircles(lng = ~Long, lat = ~Lat, weight = 10, color = "#03F", opacity = 0.5,
             radius = ~sqrt(Freq) * 30, popup = ~ population_percentage    
  )

我现在要做的是将opulation_percentage放在bubles(或圈子)里面,如下例所示。

enter image description here

任何?

1 个答案:

答案 0 :(得分:2)

我不确定您要查找的内容,但如果您想对这些项目进行分组并在圈子中显示数字,则可以使用clusterOptions = markerClusterOptions()内的addCirclesaddCircleMarkers < / p>