Skip to content

update_polylines() does not have any impact. Ref. example in package document #277

Description

@sanjmeh
df <- tram_route
df$id <- c(rep(1, 27), rep(2, 28))
df$colour <- c(rep("#00FFFF", 27), rep("#FF00FF", 28))
df_update <- data.frame(id = c(1,2),
                        width = c(3,10),
                        colour = c("#00FF00", "#DCAB00"))

google_map(key = map_key) %>% 
add_polylines(data = df, lat = 'shape_pt_lat', lon = 'shape_pt_lon', 
stroke_colour = "colour", id = 'id') %>% 
update_polylines(data = df_update, id = 'id', stroke_weight = "width", stroke_colour = 'colour')

In the above example the update_polylines() does not have any impact.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions