-
Notifications
You must be signed in to change notification settings - Fork 505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2.0.0 #492
v2.0.0 #492
Conversation
…do intersection with simple features (sf)
… editable spot for feature attributes
…non-standard styling as begin rewrite
… to use ControlStore
Known broken example: topoData <- readLines("https://d3js.org/us-10m.v1.json") %>% paste(collapse = "\n")
leaflet() %>%
setView(lng = -98.583, lat = 39.833, zoom = 3) %>%
addTiles() %>%
addTopoJSON(topoData, weight = 1, color = "#444444", fill = FALSE) is fixed by changing the data source: topoData <- readLines("http://bl.ocks.org/mbostock/raw/4090846/us.json") %>% paste(collapse = "\n")
leaflet() %>%
setView(lng = -98.583, lat = 39.833, zoom = 3) %>%
addTiles() %>%
addTopoJSON(topoData, weight = 1, color = "#444444", fill = FALSE) I believe Bostock is projecting the data. This raw data from an old block is not geo projected. The raw data is leaflet ready, where as the original data is ready for D3. |
…dded space in the icon NA label
* copy over gh-pages into docs folder * use usa_sf instead of usa_composite > rmapshaper::ms_simplify(usa_composite()) Error in ogrInfo(dsn = dsn, layer = layer, encoding = encoding, use_iconv = use_iconv, : Cannot open data source No errors when using `usa_sf()` * compile docs * Add note to where data came from (rstudio#498) Will be true once branch is merged into master * Add docs for input$MAPID_center from @michael-chong for (rstudio#450) had to copy verbatim as the website moved from gh-pages to docs folder
@schloerke thanks for incredibly hard work on this. I will start testing with |
@jcheng5 Hi! I submitted issue #496 (related to #152, #163, #170, and #303), and I didn't quite understand your response to @timelyportfolio by saying "The restyle operation seems like something you should be able to do to anything, not just GeoJSON?" Could you explain further if there are any plans to implement setStyle or restyle? Or if not, could you point out a way/gesture towards how to implement it using some Javascript? Thanks for your time and for helping make such a great package. |
Resolves #476 (which merges #453, #458, #462, #405, #396, #393).
Remaining PR's to possibly include:
Remaining Issues to address:
Tasks left before merging
1.2.0no. release to public. then upgrade to 1.3.1 (or latest) in next releasedata
argument #491 - addLegend should supportdata
argrevdepcheck::revdep_check()
on final versionKnown broken examples: