├── .Rbuildignore ├── .github ├── .gitignore ├── ISSUE_TEMPLATE │ └── issue_template.md └── workflows │ ├── R-CMD-check.yaml │ ├── document.yaml │ ├── pkgdown.yaml │ ├── style.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── HowTo.md ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── antpath.R ├── arrowhead.R ├── buildings.R ├── clusterCharts.R ├── contextmenu.R ├── data_docs.R ├── divicon.R ├── easyprint.R ├── geosearch.R ├── gibs.R ├── heightgraph.R ├── hexbin.R ├── history.R ├── labelgun.R ├── layergroupcollision.R ├── layergroupconditional.R ├── leaflet.extras2-package.R ├── leafletsync.R ├── mapkeyIcon.R ├── movingmarker.R ├── openweather.R ├── playback.R ├── reachability.R ├── sidebar.R ├── sidebyside.R ├── spin.R ├── tangram.R ├── timeslider.R ├── velocity.R └── wms.R ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw └── data-raw.R ├── data └── gibs_layers.rda ├── inst ├── examples │ ├── Buildings_mini.geojson │ ├── antpath_app.R │ ├── arrowhead_app.R │ ├── buildings_app.R │ ├── clusterCharts_app.R │ ├── clustercharts_sum.R │ ├── conditional_app.R │ ├── contextmenu_app.R │ ├── divicons_app.R │ ├── divicons_html_app.R │ ├── easyprint_app.R │ ├── geosearch_app.R │ ├── gibs_app.R │ ├── heightgraph_app.R │ ├── hexbin_app.R │ ├── history_app.R │ ├── labelgun_app.R │ ├── layergroupcollision_app.R │ ├── leafletsync │ │ ├── sync_basic.R │ │ ├── sync_offsetHelper.R │ │ ├── sync_offset_continuous.R │ │ └── sync_with_synclist.R │ ├── mapkeyIcons_app.R │ ├── movingmarker_app.R │ ├── multi_sidebar_app.R │ ├── openweather_app.R │ ├── playback_app.R │ ├── playback_app_awesomemarkers.R │ ├── playback_app_divicon.R │ ├── reachability_app.R │ ├── side_by_side_app.R │ ├── sidebar_app.R │ ├── spin_app.R │ ├── tangram │ │ ├── tangram_app.R │ │ └── www │ │ │ ├── pois.png │ │ │ └── scene.yaml │ ├── timeslider_app.R │ ├── velocity_app.R │ ├── wms_app.R │ ├── wms_popup.R │ └── www │ │ └── icons │ │ ├── Icon25.svg │ │ ├── Icon29.svg │ │ ├── Icon5.svg │ │ └── Icon8.svg └── htmlwidgets │ ├── lfx-antpath │ ├── lfx-ant-path-bindings.js │ └── lfx-ant-path.js │ ├── lfx-arrowhead │ ├── leaflet-arrowheads-bindings.js │ ├── leaflet-arrowheads.js │ └── leaflet.geometryutil.js │ ├── lfx-building │ ├── osm-buildings-bindings.js │ ├── osm-buildings.css │ └── osm-buildings.js │ ├── lfx-clustercharts │ ├── d3.v3.min.js │ ├── lfx-clustercharts-bindings.js │ └── lfx-clustercharts.css │ ├── lfx-conditional │ ├── leaflet.layergroup.conditional-bindings.js │ └── leaflet.layergroup.conditional.js │ ├── lfx-contextmenu │ ├── leaflet.contextmenu-bindings.js │ ├── leaflet.contextmenu.css │ ├── leaflet.contextmenu.js │ ├── leaflet.contextmenu.min.css │ └── leaflet.contextmenu.min.js │ ├── lfx-divicon │ └── lfx-divicon-bindings.js │ ├── lfx-easyprint │ ├── FileSaver.js │ ├── dom-to-image.js │ ├── lfx-easyprint-bindings.js │ ├── lfx-easyprint.js │ └── lfx-easyprint_full.js │ ├── lfx-geosearch │ ├── bundle.min.js │ ├── geosearch-bindings.js │ └── geosearch.css │ ├── lfx-gibs │ ├── GIBSLayer.js │ ├── GIBSMetadata.js │ ├── gibs-bindings.js │ ├── gibs_layers_meta.json │ └── gibs_mask_meta.json │ ├── lfx-heightgraph │ ├── L.Control.Heightgraph-bindings.js │ ├── L.Control.Heightgraph.css │ ├── L.Control.Heightgraph.js │ └── img │ │ ├── area-chart.svg │ │ └── remove.svg │ ├── lfx-hexbin │ ├── HexbinLayer.js │ ├── d3-hexbin.js │ ├── d3.js │ └── hexbin-bindings.js │ ├── lfx-history │ ├── lfx-history-bindings.js │ ├── lfx-history.css │ ├── lfx-history.js │ └── zoomCenter.js │ ├── lfx-labelgun │ ├── labelgun-binding.js │ ├── labelgun.js │ ├── labelgun.min.js │ └── rbush.min.js │ ├── lfx-layergroupcollision │ ├── Leaflet.LayerGroup.Collision.js │ ├── layergroup-binding.js │ └── rbush.min.js │ ├── lfx-leafletsync │ ├── L.Map.Sync.js │ └── leafletsync-bindings.js │ ├── lfx-mapkeyicon │ ├── L.Icon.Mapkey.css │ ├── L.Icon.Mapkey.js │ ├── css │ │ ├── MapkeyIcons.css │ │ ├── MapkeyIcons.eot │ │ ├── MapkeyIcons.svg │ │ ├── MapkeyIcons.ttf │ │ ├── MapkeyIcons.woff │ │ └── MapkeyIconsList.json │ └── lfx-mapkeyicon-bindings.js │ ├── lfx-movingmarker │ ├── MovingMarker.js │ └── lfx-movingmarker-bindings.js │ ├── lfx-openweather │ ├── leaflet-openweathermap-bindings.js │ ├── leaflet-openweathermap.css │ ├── leaflet-openweathermap.js │ └── owmloading.gif │ ├── lfx-playback │ ├── leaflet.playback-bindings.js │ └── leaflet.playback.js │ ├── lfx-reachability │ ├── leaflet.reachability-bindings.js │ ├── leaflet.reachability.css │ └── leaflet.reachability.js │ ├── lfx-side-by-side │ ├── lfx-side-by-side-bindings.js │ └── lfx-side-by-side.js │ ├── lfx-sidebar │ ├── leaflet-sidebar-binding.js │ ├── leaflet-sidebar.css │ └── leaflet-sidebar.js │ ├── lfx-spin │ ├── leaflet.spin-binding.js │ ├── leaflet.spin.js │ ├── leaflet.spin.min.js │ ├── spin.css │ ├── spin.js │ └── spin.min.js │ ├── lfx-tangram │ ├── leaflet.tangram.binding.js │ └── tangram.min.js │ ├── lfx-timeslider │ ├── jquery-ui.css │ ├── jquery-ui.min.js │ ├── leaflet.SliderControl-bindings.js │ └── leaflet.SliderControl.min.js │ ├── lfx-velocity │ ├── leaflet-velocity-bindings.js │ ├── leaflet-velocity.css │ └── leaflet-velocity.js │ └── lfx-wms │ ├── leaflet.wms-bindings.js │ └── leaflet.wms.js ├── leaflet.extras2.Rproj ├── man ├── LayerGroupCollision.Rd ├── addAntpath.Rd ├── addArrowhead.Rd ├── addBuildings.Rd ├── addClusterCharts.Rd ├── addContextmenu.Rd ├── addDivicon.Rd ├── addEasyprint.Rd ├── addGIBS.Rd ├── addGeosearch.Rd ├── addHeightgraph.Rd ├── addHexbin.Rd ├── addHistory.Rd ├── addItemContextmenu.Rd ├── addLabelgun.Rd ├── addLayerGroupConditional.Rd ├── addLeafletsync.Rd ├── addLeafletsyncDependency.Rd ├── addMapkeyMarkers.Rd ├── addMovingMarker.Rd ├── addOpenweatherCurrent.Rd ├── addOpenweatherTiles.Rd ├── addPlayback.Rd ├── addReachability.Rd ├── addSidebar.Rd ├── addSidebyside.Rd ├── addSpinner.Rd ├── addTangram.Rd ├── addTimeslider.Rd ├── addVelocity.Rd ├── addWMS.Rd ├── antpathOptions.Rd ├── arrowheadOptions.Rd ├── clearAntpath.Rd ├── clearArrowhead.Rd ├── clearConditionalLayers.Rd ├── clearFuture.Rd ├── clearHexbin.Rd ├── clearHistory.Rd ├── closeSidebar.Rd ├── clusterchartOptions.Rd ├── context_mapmenuItems.Rd ├── context_markermenuItems.Rd ├── context_menuItem.Rd ├── disableContextmenu.Rd ├── easyprintMap.Rd ├── easyprintOptions.Rd ├── enableContextmenu.Rd ├── geosearchOptions.Rd ├── geosearchProvider.Rd ├── gibs_layers.Rd ├── goBackHistory.Rd ├── goForwardHistory.Rd ├── heightgraphOptions.Rd ├── hexbinOptions.Rd ├── hideContextmenu.Rd ├── hideHexbin.Rd ├── historyOptions.Rd ├── insertItemContextmenu.Rd ├── isSynced.Rd ├── leaflet.extras2-package.Rd ├── leafletsyncOptions.Rd ├── makeMapkeyIcon.Rd ├── mapkeyIconList.Rd ├── mapkeyIcons.Rd ├── mapmenuItems.Rd ├── markermenuItems.Rd ├── menuItem.Rd ├── movingMarkerOptions.Rd ├── openSidebar.Rd ├── openweatherCurrentOptions.Rd ├── openweatherOptions.Rd ├── playbackOptions.Rd ├── reachabilityOptions.Rd ├── removeAntpath.Rd ├── removeArrowhead.Rd ├── removeConditionalLayer.Rd ├── removeEasyprint.Rd ├── removeGeosearch.Rd ├── removeItemContextmenu.Rd ├── removePlayback.Rd ├── removeReachability.Rd ├── removeSidebar.Rd ├── removeSidebyside.Rd ├── removeTimeslider.Rd ├── removeVelocity.Rd ├── removeallItemsContextmenu.Rd ├── setBuildingData.Rd ├── setBuildingStyle.Rd ├── setDate.Rd ├── setDisabledContextmenu.Rd ├── setOptionsVelocity.Rd ├── setTransparent.Rd ├── showContextmenu.Rd ├── showHexbin.Rd ├── sidebar_pane.Rd ├── sidebar_tabs.Rd ├── startMoving.Rd ├── sub-.leaflet_mapkey_icon_set.Rd ├── timesliderOptions.Rd ├── to_jsonformat.Rd ├── to_ms.Rd ├── unsync.Rd ├── updateBuildingTime.Rd ├── updateHexbin.Rd └── velocityOptions.Rd ├── package.json ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── data.sqlite ├── email.yml ├── failures.md └── problems.md └── tests ├── testthat.R └── testthat ├── test-antpath.R ├── test-arrowhead.R ├── test-clustercharts.R ├── test-contextmenu.R ├── test-divicon.R ├── test-easyprint.R ├── test-geosearch.R ├── test-gibs.R ├── test-heightgraph.R ├── test-hexbin.R ├── test-history.R ├── test-labelgun.R ├── test-layergroupcollision.R ├── test-layergroupconditional.R ├── test-leafletsync.R ├── test-mapkeyicon.R ├── test-movingmarker.R ├── test-openweathermap.R ├── test-osmbuildings.R ├── test-playback.R ├── test-reachability.R ├── test-sidebar.R ├── test-sidebyside.R ├── test-spin.R ├── test-tangram.R ├── test-timeslider.R ├── test-velocity.R └── test-wms.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/document.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/workflows/document.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/workflows/style.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/.lintr -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /HowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/HowTo.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/antpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/antpath.R -------------------------------------------------------------------------------- /R/arrowhead.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/arrowhead.R -------------------------------------------------------------------------------- /R/buildings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/buildings.R -------------------------------------------------------------------------------- /R/clusterCharts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/clusterCharts.R -------------------------------------------------------------------------------- /R/contextmenu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/contextmenu.R -------------------------------------------------------------------------------- /R/data_docs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/data_docs.R -------------------------------------------------------------------------------- /R/divicon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/divicon.R -------------------------------------------------------------------------------- /R/easyprint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/easyprint.R -------------------------------------------------------------------------------- /R/geosearch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/geosearch.R -------------------------------------------------------------------------------- /R/gibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/gibs.R -------------------------------------------------------------------------------- /R/heightgraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/heightgraph.R -------------------------------------------------------------------------------- /R/hexbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/hexbin.R -------------------------------------------------------------------------------- /R/history.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/history.R -------------------------------------------------------------------------------- /R/labelgun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/labelgun.R -------------------------------------------------------------------------------- /R/layergroupcollision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/layergroupcollision.R -------------------------------------------------------------------------------- /R/layergroupconditional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/layergroupconditional.R -------------------------------------------------------------------------------- /R/leaflet.extras2-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/leaflet.extras2-package.R -------------------------------------------------------------------------------- /R/leafletsync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/leafletsync.R -------------------------------------------------------------------------------- /R/mapkeyIcon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/mapkeyIcon.R -------------------------------------------------------------------------------- /R/movingmarker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/movingmarker.R -------------------------------------------------------------------------------- /R/openweather.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/openweather.R -------------------------------------------------------------------------------- /R/playback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/playback.R -------------------------------------------------------------------------------- /R/reachability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/reachability.R -------------------------------------------------------------------------------- /R/sidebar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/sidebar.R -------------------------------------------------------------------------------- /R/sidebyside.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/sidebyside.R -------------------------------------------------------------------------------- /R/spin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/spin.R -------------------------------------------------------------------------------- /R/tangram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/tangram.R -------------------------------------------------------------------------------- /R/timeslider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/timeslider.R -------------------------------------------------------------------------------- /R/velocity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/velocity.R -------------------------------------------------------------------------------- /R/wms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/R/wms.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/data-raw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/data-raw/data-raw.R -------------------------------------------------------------------------------- /data/gibs_layers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/data/gibs_layers.rda -------------------------------------------------------------------------------- /inst/examples/Buildings_mini.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/Buildings_mini.geojson -------------------------------------------------------------------------------- /inst/examples/antpath_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/antpath_app.R -------------------------------------------------------------------------------- /inst/examples/arrowhead_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/arrowhead_app.R -------------------------------------------------------------------------------- /inst/examples/buildings_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/buildings_app.R -------------------------------------------------------------------------------- /inst/examples/clusterCharts_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/clusterCharts_app.R -------------------------------------------------------------------------------- /inst/examples/clustercharts_sum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/clustercharts_sum.R -------------------------------------------------------------------------------- /inst/examples/conditional_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/conditional_app.R -------------------------------------------------------------------------------- /inst/examples/contextmenu_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/contextmenu_app.R -------------------------------------------------------------------------------- /inst/examples/divicons_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/divicons_app.R -------------------------------------------------------------------------------- /inst/examples/divicons_html_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/divicons_html_app.R -------------------------------------------------------------------------------- /inst/examples/easyprint_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/easyprint_app.R -------------------------------------------------------------------------------- /inst/examples/geosearch_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/geosearch_app.R -------------------------------------------------------------------------------- /inst/examples/gibs_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/gibs_app.R -------------------------------------------------------------------------------- /inst/examples/heightgraph_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/heightgraph_app.R -------------------------------------------------------------------------------- /inst/examples/hexbin_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/hexbin_app.R -------------------------------------------------------------------------------- /inst/examples/history_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/history_app.R -------------------------------------------------------------------------------- /inst/examples/labelgun_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/labelgun_app.R -------------------------------------------------------------------------------- /inst/examples/layergroupcollision_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/layergroupcollision_app.R -------------------------------------------------------------------------------- /inst/examples/leafletsync/sync_basic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/leafletsync/sync_basic.R -------------------------------------------------------------------------------- /inst/examples/leafletsync/sync_offsetHelper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/leafletsync/sync_offsetHelper.R -------------------------------------------------------------------------------- /inst/examples/leafletsync/sync_offset_continuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/leafletsync/sync_offset_continuous.R -------------------------------------------------------------------------------- /inst/examples/leafletsync/sync_with_synclist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/leafletsync/sync_with_synclist.R -------------------------------------------------------------------------------- /inst/examples/mapkeyIcons_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/mapkeyIcons_app.R -------------------------------------------------------------------------------- /inst/examples/movingmarker_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/movingmarker_app.R -------------------------------------------------------------------------------- /inst/examples/multi_sidebar_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/multi_sidebar_app.R -------------------------------------------------------------------------------- /inst/examples/openweather_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/openweather_app.R -------------------------------------------------------------------------------- /inst/examples/playback_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/playback_app.R -------------------------------------------------------------------------------- /inst/examples/playback_app_awesomemarkers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/playback_app_awesomemarkers.R -------------------------------------------------------------------------------- /inst/examples/playback_app_divicon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/playback_app_divicon.R -------------------------------------------------------------------------------- /inst/examples/reachability_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/reachability_app.R -------------------------------------------------------------------------------- /inst/examples/side_by_side_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/side_by_side_app.R -------------------------------------------------------------------------------- /inst/examples/sidebar_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/sidebar_app.R -------------------------------------------------------------------------------- /inst/examples/spin_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/spin_app.R -------------------------------------------------------------------------------- /inst/examples/tangram/tangram_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/tangram/tangram_app.R -------------------------------------------------------------------------------- /inst/examples/tangram/www/pois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/tangram/www/pois.png -------------------------------------------------------------------------------- /inst/examples/tangram/www/scene.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/tangram/www/scene.yaml -------------------------------------------------------------------------------- /inst/examples/timeslider_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/timeslider_app.R -------------------------------------------------------------------------------- /inst/examples/velocity_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/velocity_app.R -------------------------------------------------------------------------------- /inst/examples/wms_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/wms_app.R -------------------------------------------------------------------------------- /inst/examples/wms_popup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/wms_popup.R -------------------------------------------------------------------------------- /inst/examples/www/icons/Icon25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/www/icons/Icon25.svg -------------------------------------------------------------------------------- /inst/examples/www/icons/Icon29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/www/icons/Icon29.svg -------------------------------------------------------------------------------- /inst/examples/www/icons/Icon5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/www/icons/Icon5.svg -------------------------------------------------------------------------------- /inst/examples/www/icons/Icon8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/examples/www/icons/Icon8.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-antpath/lfx-ant-path-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-antpath/lfx-ant-path-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-antpath/lfx-ant-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-antpath/lfx-ant-path.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-arrowhead/leaflet-arrowheads-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-arrowhead/leaflet-arrowheads-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-arrowhead/leaflet-arrowheads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-arrowhead/leaflet-arrowheads.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-arrowhead/leaflet.geometryutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-arrowhead/leaflet.geometryutil.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-building/osm-buildings-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-building/osm-buildings-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-building/osm-buildings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-building/osm-buildings.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-building/osm-buildings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-building/osm-buildings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-clustercharts/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-clustercharts/d3.v3.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-clustercharts/lfx-clustercharts-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-clustercharts/lfx-clustercharts-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-clustercharts/lfx-clustercharts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-clustercharts/lfx-clustercharts.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-conditional/leaflet.layergroup.conditional-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-conditional/leaflet.layergroup.conditional-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-conditional/leaflet.layergroup.conditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-conditional/leaflet.layergroup.conditional.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.min.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-contextmenu/leaflet.contextmenu.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-divicon/lfx-divicon-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-divicon/lfx-divicon-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-easyprint/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-easyprint/FileSaver.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-easyprint/dom-to-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-easyprint/dom-to-image.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-easyprint/lfx-easyprint-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-easyprint/lfx-easyprint-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-easyprint/lfx-easyprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-easyprint/lfx-easyprint.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-easyprint/lfx-easyprint_full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-easyprint/lfx-easyprint_full.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-geosearch/bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-geosearch/bundle.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-geosearch/geosearch-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-geosearch/geosearch-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-geosearch/geosearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-geosearch/geosearch.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-gibs/GIBSLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-gibs/GIBSLayer.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-gibs/GIBSMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-gibs/GIBSMetadata.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-gibs/gibs-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-gibs/gibs-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-gibs/gibs_layers_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-gibs/gibs_layers_meta.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-gibs/gibs_mask_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-gibs/gibs_mask_meta.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-heightgraph/L.Control.Heightgraph.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-heightgraph/img/area-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-heightgraph/img/area-chart.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-heightgraph/img/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-heightgraph/img/remove.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-hexbin/HexbinLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-hexbin/HexbinLayer.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-hexbin/d3-hexbin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-hexbin/d3-hexbin.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-hexbin/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-hexbin/d3.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-hexbin/hexbin-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-hexbin/hexbin-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-history/lfx-history-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-history/lfx-history-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-history/lfx-history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-history/lfx-history.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-history/lfx-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-history/lfx-history.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-history/zoomCenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-history/zoomCenter.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-labelgun/labelgun-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-labelgun/labelgun-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-labelgun/labelgun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-labelgun/labelgun.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-labelgun/labelgun.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-labelgun/labelgun.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-labelgun/rbush.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-labelgun/rbush.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-layergroupcollision/Leaflet.LayerGroup.Collision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-layergroupcollision/Leaflet.LayerGroup.Collision.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-layergroupcollision/layergroup-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-layergroupcollision/layergroup-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-layergroupcollision/rbush.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-layergroupcollision/rbush.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-leafletsync/L.Map.Sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-leafletsync/L.Map.Sync.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-leafletsync/leafletsync-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-leafletsync/leafletsync-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/L.Icon.Mapkey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/L.Icon.Mapkey.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/L.Icon.Mapkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/L.Icon.Mapkey.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.eot -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.ttf -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIcons.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIconsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/css/MapkeyIconsList.json -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-mapkeyicon/lfx-mapkeyicon-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-mapkeyicon/lfx-mapkeyicon-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-movingmarker/MovingMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-movingmarker/MovingMarker.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-movingmarker/lfx-movingmarker-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-movingmarker/lfx-movingmarker-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-openweather/leaflet-openweathermap-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-openweather/leaflet-openweathermap-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-openweather/leaflet-openweathermap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-openweather/leaflet-openweathermap.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-openweather/leaflet-openweathermap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-openweather/leaflet-openweathermap.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-openweather/owmloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-openweather/owmloading.gif -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-playback/leaflet.playback-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-playback/leaflet.playback-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-playback/leaflet.playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-playback/leaflet.playback.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-reachability/leaflet.reachability-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-reachability/leaflet.reachability-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-reachability/leaflet.reachability.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-reachability/leaflet.reachability.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-reachability/leaflet.reachability.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-reachability/leaflet.reachability.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-side-by-side/lfx-side-by-side-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-side-by-side/lfx-side-by-side-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-side-by-side/lfx-side-by-side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-side-by-side/lfx-side-by-side.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-sidebar/leaflet-sidebar-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-sidebar/leaflet-sidebar-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-sidebar/leaflet-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-sidebar/leaflet-sidebar.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-sidebar/leaflet-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-sidebar/leaflet-sidebar.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/leaflet.spin-binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/leaflet.spin-binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/leaflet.spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/leaflet.spin.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/leaflet.spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/leaflet.spin.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/spin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/spin.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/spin.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-spin/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-spin/spin.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-tangram/leaflet.tangram.binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-tangram/leaflet.tangram.binding.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-tangram/tangram.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-tangram/tangram.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-timeslider/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-timeslider/jquery-ui.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-timeslider/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-timeslider/jquery-ui.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-timeslider/leaflet.SliderControl-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-timeslider/leaflet.SliderControl-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-timeslider/leaflet.SliderControl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-timeslider/leaflet.SliderControl.min.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-velocity/leaflet-velocity-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-velocity/leaflet-velocity-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-velocity/leaflet-velocity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-velocity/leaflet-velocity.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-velocity/leaflet-velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-velocity/leaflet-velocity.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-wms/leaflet.wms-bindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-wms/leaflet.wms-bindings.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lfx-wms/leaflet.wms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/inst/htmlwidgets/lfx-wms/leaflet.wms.js -------------------------------------------------------------------------------- /leaflet.extras2.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/leaflet.extras2.Rproj -------------------------------------------------------------------------------- /man/LayerGroupCollision.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/LayerGroupCollision.Rd -------------------------------------------------------------------------------- /man/addAntpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addAntpath.Rd -------------------------------------------------------------------------------- /man/addArrowhead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addArrowhead.Rd -------------------------------------------------------------------------------- /man/addBuildings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addBuildings.Rd -------------------------------------------------------------------------------- /man/addClusterCharts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addClusterCharts.Rd -------------------------------------------------------------------------------- /man/addContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addContextmenu.Rd -------------------------------------------------------------------------------- /man/addDivicon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addDivicon.Rd -------------------------------------------------------------------------------- /man/addEasyprint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addEasyprint.Rd -------------------------------------------------------------------------------- /man/addGIBS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addGIBS.Rd -------------------------------------------------------------------------------- /man/addGeosearch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addGeosearch.Rd -------------------------------------------------------------------------------- /man/addHeightgraph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addHeightgraph.Rd -------------------------------------------------------------------------------- /man/addHexbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addHexbin.Rd -------------------------------------------------------------------------------- /man/addHistory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addHistory.Rd -------------------------------------------------------------------------------- /man/addItemContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addItemContextmenu.Rd -------------------------------------------------------------------------------- /man/addLabelgun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addLabelgun.Rd -------------------------------------------------------------------------------- /man/addLayerGroupConditional.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addLayerGroupConditional.Rd -------------------------------------------------------------------------------- /man/addLeafletsync.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addLeafletsync.Rd -------------------------------------------------------------------------------- /man/addLeafletsyncDependency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addLeafletsyncDependency.Rd -------------------------------------------------------------------------------- /man/addMapkeyMarkers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addMapkeyMarkers.Rd -------------------------------------------------------------------------------- /man/addMovingMarker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addMovingMarker.Rd -------------------------------------------------------------------------------- /man/addOpenweatherCurrent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addOpenweatherCurrent.Rd -------------------------------------------------------------------------------- /man/addOpenweatherTiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addOpenweatherTiles.Rd -------------------------------------------------------------------------------- /man/addPlayback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addPlayback.Rd -------------------------------------------------------------------------------- /man/addReachability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addReachability.Rd -------------------------------------------------------------------------------- /man/addSidebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addSidebar.Rd -------------------------------------------------------------------------------- /man/addSidebyside.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addSidebyside.Rd -------------------------------------------------------------------------------- /man/addSpinner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addSpinner.Rd -------------------------------------------------------------------------------- /man/addTangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addTangram.Rd -------------------------------------------------------------------------------- /man/addTimeslider.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addTimeslider.Rd -------------------------------------------------------------------------------- /man/addVelocity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addVelocity.Rd -------------------------------------------------------------------------------- /man/addWMS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/addWMS.Rd -------------------------------------------------------------------------------- /man/antpathOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/antpathOptions.Rd -------------------------------------------------------------------------------- /man/arrowheadOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/arrowheadOptions.Rd -------------------------------------------------------------------------------- /man/clearAntpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearAntpath.Rd -------------------------------------------------------------------------------- /man/clearArrowhead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearArrowhead.Rd -------------------------------------------------------------------------------- /man/clearConditionalLayers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearConditionalLayers.Rd -------------------------------------------------------------------------------- /man/clearFuture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearFuture.Rd -------------------------------------------------------------------------------- /man/clearHexbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearHexbin.Rd -------------------------------------------------------------------------------- /man/clearHistory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clearHistory.Rd -------------------------------------------------------------------------------- /man/closeSidebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/closeSidebar.Rd -------------------------------------------------------------------------------- /man/clusterchartOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/clusterchartOptions.Rd -------------------------------------------------------------------------------- /man/context_mapmenuItems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/context_mapmenuItems.Rd -------------------------------------------------------------------------------- /man/context_markermenuItems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/context_markermenuItems.Rd -------------------------------------------------------------------------------- /man/context_menuItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/context_menuItem.Rd -------------------------------------------------------------------------------- /man/disableContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/disableContextmenu.Rd -------------------------------------------------------------------------------- /man/easyprintMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/easyprintMap.Rd -------------------------------------------------------------------------------- /man/easyprintOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/easyprintOptions.Rd -------------------------------------------------------------------------------- /man/enableContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/enableContextmenu.Rd -------------------------------------------------------------------------------- /man/geosearchOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/geosearchOptions.Rd -------------------------------------------------------------------------------- /man/geosearchProvider.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/geosearchProvider.Rd -------------------------------------------------------------------------------- /man/gibs_layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/gibs_layers.Rd -------------------------------------------------------------------------------- /man/goBackHistory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/goBackHistory.Rd -------------------------------------------------------------------------------- /man/goForwardHistory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/goForwardHistory.Rd -------------------------------------------------------------------------------- /man/heightgraphOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/heightgraphOptions.Rd -------------------------------------------------------------------------------- /man/hexbinOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/hexbinOptions.Rd -------------------------------------------------------------------------------- /man/hideContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/hideContextmenu.Rd -------------------------------------------------------------------------------- /man/hideHexbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/hideHexbin.Rd -------------------------------------------------------------------------------- /man/historyOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/historyOptions.Rd -------------------------------------------------------------------------------- /man/insertItemContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/insertItemContextmenu.Rd -------------------------------------------------------------------------------- /man/isSynced.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/isSynced.Rd -------------------------------------------------------------------------------- /man/leaflet.extras2-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/leaflet.extras2-package.Rd -------------------------------------------------------------------------------- /man/leafletsyncOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/leafletsyncOptions.Rd -------------------------------------------------------------------------------- /man/makeMapkeyIcon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/makeMapkeyIcon.Rd -------------------------------------------------------------------------------- /man/mapkeyIconList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/mapkeyIconList.Rd -------------------------------------------------------------------------------- /man/mapkeyIcons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/mapkeyIcons.Rd -------------------------------------------------------------------------------- /man/mapmenuItems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/mapmenuItems.Rd -------------------------------------------------------------------------------- /man/markermenuItems.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/markermenuItems.Rd -------------------------------------------------------------------------------- /man/menuItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/menuItem.Rd -------------------------------------------------------------------------------- /man/movingMarkerOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/movingMarkerOptions.Rd -------------------------------------------------------------------------------- /man/openSidebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/openSidebar.Rd -------------------------------------------------------------------------------- /man/openweatherCurrentOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/openweatherCurrentOptions.Rd -------------------------------------------------------------------------------- /man/openweatherOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/openweatherOptions.Rd -------------------------------------------------------------------------------- /man/playbackOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/playbackOptions.Rd -------------------------------------------------------------------------------- /man/reachabilityOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/reachabilityOptions.Rd -------------------------------------------------------------------------------- /man/removeAntpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeAntpath.Rd -------------------------------------------------------------------------------- /man/removeArrowhead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeArrowhead.Rd -------------------------------------------------------------------------------- /man/removeConditionalLayer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeConditionalLayer.Rd -------------------------------------------------------------------------------- /man/removeEasyprint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeEasyprint.Rd -------------------------------------------------------------------------------- /man/removeGeosearch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeGeosearch.Rd -------------------------------------------------------------------------------- /man/removeItemContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeItemContextmenu.Rd -------------------------------------------------------------------------------- /man/removePlayback.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removePlayback.Rd -------------------------------------------------------------------------------- /man/removeReachability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeReachability.Rd -------------------------------------------------------------------------------- /man/removeSidebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeSidebar.Rd -------------------------------------------------------------------------------- /man/removeSidebyside.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeSidebyside.Rd -------------------------------------------------------------------------------- /man/removeTimeslider.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeTimeslider.Rd -------------------------------------------------------------------------------- /man/removeVelocity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeVelocity.Rd -------------------------------------------------------------------------------- /man/removeallItemsContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/removeallItemsContextmenu.Rd -------------------------------------------------------------------------------- /man/setBuildingData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setBuildingData.Rd -------------------------------------------------------------------------------- /man/setBuildingStyle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setBuildingStyle.Rd -------------------------------------------------------------------------------- /man/setDate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setDate.Rd -------------------------------------------------------------------------------- /man/setDisabledContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setDisabledContextmenu.Rd -------------------------------------------------------------------------------- /man/setOptionsVelocity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setOptionsVelocity.Rd -------------------------------------------------------------------------------- /man/setTransparent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/setTransparent.Rd -------------------------------------------------------------------------------- /man/showContextmenu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/showContextmenu.Rd -------------------------------------------------------------------------------- /man/showHexbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/showHexbin.Rd -------------------------------------------------------------------------------- /man/sidebar_pane.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/sidebar_pane.Rd -------------------------------------------------------------------------------- /man/sidebar_tabs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/sidebar_tabs.Rd -------------------------------------------------------------------------------- /man/startMoving.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/startMoving.Rd -------------------------------------------------------------------------------- /man/sub-.leaflet_mapkey_icon_set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/sub-.leaflet_mapkey_icon_set.Rd -------------------------------------------------------------------------------- /man/timesliderOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/timesliderOptions.Rd -------------------------------------------------------------------------------- /man/to_jsonformat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/to_jsonformat.Rd -------------------------------------------------------------------------------- /man/to_ms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/to_ms.Rd -------------------------------------------------------------------------------- /man/unsync.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/unsync.Rd -------------------------------------------------------------------------------- /man/updateBuildingTime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/updateBuildingTime.Rd -------------------------------------------------------------------------------- /man/updateHexbin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/updateHexbin.Rd -------------------------------------------------------------------------------- /man/velocityOptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/man/velocityOptions.Rd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/package.json -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/data.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/revdep/data.sqlite -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-antpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-antpath.R -------------------------------------------------------------------------------- /tests/testthat/test-arrowhead.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-arrowhead.R -------------------------------------------------------------------------------- /tests/testthat/test-clustercharts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-clustercharts.R -------------------------------------------------------------------------------- /tests/testthat/test-contextmenu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-contextmenu.R -------------------------------------------------------------------------------- /tests/testthat/test-divicon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-divicon.R -------------------------------------------------------------------------------- /tests/testthat/test-easyprint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-easyprint.R -------------------------------------------------------------------------------- /tests/testthat/test-geosearch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-geosearch.R -------------------------------------------------------------------------------- /tests/testthat/test-gibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-gibs.R -------------------------------------------------------------------------------- /tests/testthat/test-heightgraph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-heightgraph.R -------------------------------------------------------------------------------- /tests/testthat/test-hexbin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-hexbin.R -------------------------------------------------------------------------------- /tests/testthat/test-history.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-history.R -------------------------------------------------------------------------------- /tests/testthat/test-labelgun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-labelgun.R -------------------------------------------------------------------------------- /tests/testthat/test-layergroupcollision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-layergroupcollision.R -------------------------------------------------------------------------------- /tests/testthat/test-layergroupconditional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-layergroupconditional.R -------------------------------------------------------------------------------- /tests/testthat/test-leafletsync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-leafletsync.R -------------------------------------------------------------------------------- /tests/testthat/test-mapkeyicon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-mapkeyicon.R -------------------------------------------------------------------------------- /tests/testthat/test-movingmarker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-movingmarker.R -------------------------------------------------------------------------------- /tests/testthat/test-openweathermap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-openweathermap.R -------------------------------------------------------------------------------- /tests/testthat/test-osmbuildings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-osmbuildings.R -------------------------------------------------------------------------------- /tests/testthat/test-playback.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-playback.R -------------------------------------------------------------------------------- /tests/testthat/test-reachability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-reachability.R -------------------------------------------------------------------------------- /tests/testthat/test-sidebar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-sidebar.R -------------------------------------------------------------------------------- /tests/testthat/test-sidebyside.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-sidebyside.R -------------------------------------------------------------------------------- /tests/testthat/test-spin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-spin.R -------------------------------------------------------------------------------- /tests/testthat/test-tangram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-tangram.R -------------------------------------------------------------------------------- /tests/testthat/test-timeslider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-timeslider.R -------------------------------------------------------------------------------- /tests/testthat/test-velocity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-velocity.R -------------------------------------------------------------------------------- /tests/testthat/test-wms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trafficonese/leaflet.extras2/HEAD/tests/testthat/test-wms.R --------------------------------------------------------------------------------