-
Notifications
You must be signed in to change notification settings - Fork 32
Fix labels/border/remove/clear-instances, **Src-functions, etc.. #95
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
Open
trafficonese
wants to merge
20
commits into
r-spatial:master
Choose a base branch
from
trafficonese:fixlabels
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
88ea86c
add args popup/labelOptions, fix labels, add dotlist to glify (sensit…
trafficonese ca4213a
move JS helper functions to sep file use const/let
trafficonese a100d37
fix remove/clear methods by layerId/group/all Glify, expose new metho…
trafficonese 1135858
fix: allow layerId to be formula
trafficonese e6dbde3
move imports to separate pkg-file
trafficonese 806bb8f
fix labels/popup for *Src functions, move Point click/Hover Functions…
trafficonese c5c9f37
convert_to_json function to try yyjsonr::write_json_str or jsonify::t…
trafficonese efb51c0
simplify/unify dependency calls
trafficonese 1e95b55
allow custom json_parser_function
trafficonese 706e10e
fixed hoverwait: 10, docs
trafficonese c3c3a97
use yyjsonr for geojson, expose new option "leafgl_geojson_parser"
trafficonese b509362
use yyjonsr instead of jsonify/geojsonsf, use correct options, fix te…
trafficonese af381dd
update Glify to 3.3.0, remove arr.splice workaround, remove tooltip i…
trafficonese 3e9d39c
hoveroff_event JS-func, use .nonce to trigger event
trafficonese f978f87
Merge branch 'master' into fixlabels
trafficonese b8691d4
update Glify,update Roxygen, fix .Rproj error
trafficonese b064140
pull
trafficonese f2bb497
use Leaflet.Glify 3.3.1
trafficonese 0cccb13
chore: use gha v4
trafficonese 6a6a223
chore: use gha v4 for upload
trafficonese File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,32 @@ | ||
leafgl development-version | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
||
* Added some @details for Shiny click and mouseover events and their corresponding input. #77 | ||
* Use `@inheritParams leaflet::**` for identical function arguments | ||
|
||
miscellaneous | ||
|
||
* update upstream javascript dependency to 3.3.1. #49 | ||
Note: If you previously used the workaround `L.glify.Shapes.instances.splice(0, 1)`, please remove it with this new version. | ||
* unified / simplified the dependency functions/calls | ||
|
||
|
||
leafgl 0.2.2 (2024-11-13) | ||
|
||
* Switched from `jsonify` and `geojsonsf` to `yyjsonr` | ||
* New method *clearGlGroup* removes a group from leaflet and the Leaflet.Glify instances. | ||
* The JavaScript methods of the `removeGl**` functions was rewritten to correctly remove an element identified by `layerId` | ||
* `clearGlLayers` now correctly removes all Leaflet.Glify instances | ||
* When showing/hiding Leaflet.Glify layers, they are set to active = TRUE/FALSE to make mouseevents work again. #48 #50 | ||
|
||
bug fixes | ||
|
||
* src version now works also in shiny. #71 | ||
* Increase precision of points, lines and shapes by translating them closer to the Pixel Origin. Thanks @RayLarone #93 | ||
* src version now works also in shiny. #71 | ||
* added `popupOptions` and `labelOptions`. #83 | ||
* added `stroke` (default=TRUE) in `addGlPolygons` and `addGlPolygonsSrc` for drawing borders. #3 #68 | ||
* Labels work similar to `leaflet`. `leafgl` accepts a single string, a vector of strings or a formula. #78 | ||
* The `...` arguments are now passed to all methods in the underlying library. This allows us to set | ||
additional arguments like `fragmentShaderSource`, `sensitivity` or `sensitivityHover`. #81 | ||
|
||
documentation etc | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should make things faster.