Coder Social home page Coder Social logo

Add Line Weight Size Legend about leaflegend HOT 5 CLOSED

bpb824 avatar bpb824 commented on July 22, 2024
Add Line Weight Size Legend

from leaflegend.

Comments (5)

tomroh avatar tomroh commented on July 22, 2024 1

@bpb824 I can add this in the next version. You are looking for something similar to addLegendSize but only changes the weight of the line height but not the line width?

from leaflegend.

tomroh avatar tomroh commented on July 22, 2024 1
devtools::install_github('tomroh/leaflegend@devel')

library(leaflet)
library(leaflegend)
data("atlStorms2005")
baseSize <- 10
lineColor <- '#00000080'
pal <- colorNumeric('Reds', atlStorms2005$MinPress)
leaflet() |> 
  addTiles() |> 
  addPolylines(data = atlStorms2005,
               weight = ~sizeNumeric(values = MaxWind, baseSize = baseSize),
               color = ~pal(MinPress),
               popup = ~as.character(MaxWind)) |> 
  addLegendLine(values = atlStorms2005$MaxWind, 
                title = 'MaxWind',
                baseSize = baseSize,
                width = 50,
                color = lineColor) |> 
  addLegendNumeric(pal = pal, 
                   title = 'MinPress',
                   values = atlStorms2005$MinPress)

I added in a new function and this should solve the issue.

from leaflegend.

bpb824 avatar bpb824 commented on July 22, 2024

Precisely -- something that can be used to represent flow data on a polyline. I use your package to map transit data for example, and I want to be able to show passenger load observed on segments of a bus route using the weight attribute of Leaflet's polyline shape. Thank you!

from leaflegend.

bpb824 avatar bpb824 commented on July 22, 2024

Thank you!!!

from leaflegend.

tomroh avatar tomroh commented on July 22, 2024

fda7012

from leaflegend.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.