Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Leaflet v1.x #453

Merged
merged 43 commits into from Mar 29, 2018
Merged

Upgrade to Leaflet v1.x #453

merged 43 commits into from Mar 29, 2018

Commits on Dec 30, 2016

  1. Configuration menu
    Copy the full SHA
    a648357 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f1e63f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31b8d05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9261eca View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d1294a3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e9267e4 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2017

  1. Configuration menu
    Copy the full SHA
    f9ac904 View commit details
    Browse the repository at this point in the history
  2. add an example using Shiny to get polygon from Leaflet.Draw and then …

    …do intersection with simple features (sf)
    timelyportfolio committed Jan 9, 2017
    Configuration menu
    Copy the full SHA
    b4bc9d9 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2017

  1. Configuration menu
    Copy the full SHA
    c5e27b4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c75faf View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2017

  1. Configuration menu
    Copy the full SHA
    351f0ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1880efb View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2017

  1. quick little poc to combine listviewer::jsonedit with mapview to have…

    … editable spot for feature attributes
    timelyportfolio committed Jan 13, 2017
    Configuration menu
    Copy the full SHA
    e3010c2 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2017

  1. Configuration menu
    Copy the full SHA
    1deebd6 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2017

  1. Configuration menu
    Copy the full SHA
    ce3c1d7 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2017

  1. add resize on drag

    timelyportfolio committed Jan 19, 2017
    Configuration menu
    Copy the full SHA
    62907df View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d1c3ef7 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2017

  1. Configuration menu
    Copy the full SHA
    2d42d10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c087ffd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1c030e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2017

  1. Configuration menu
    Copy the full SHA
    00eff02 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4b841f0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d0e4e1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7279a94 View commit details
    Browse the repository at this point in the history
  5. change leaflet-measure version in htmlDependency to 2.1.5 and remove …

    …non-standard styling as begin rewrite
    timelyportfolio committed Mar 11, 2017
    Configuration menu
    Copy the full SHA
    f6a25e9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6899951 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c6762e3 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2017

  1. Configuration menu
    Copy the full SHA
    55334c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4875a3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8f78977 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2017

  1. Configuration menu
    Copy the full SHA
    03d6b38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f448c72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ea92252 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    05dea44 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c1405d5 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2017

  1. Configuration menu
    Copy the full SHA
    aba117c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    96667e3 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2017

  1. Configuration menu
    Copy the full SHA
    83bee11 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2017

  1. Raster: Fix issue where rasters appear behind tiles by default

    The default zIndex for TileLayer and GridLayer is now 1. In
    Leaflet 0.7 it was null. In our R code, the default was NULL,
    which we pass to the Leaflet code. Therefore, in Leaflet 1.x
    we actually override the default zIndex of 1 and change it to
    "auto".
    
    However, for addRaster, we've never allowed the zIndex to be
    set, so we don't override the new default zIndex of 1. So we
    end up with a tile layer with zIndex "auto" and a grid layer
    with a zIndex of 1. For "stacking context" reasons that I do
    not understand, auto always renders in front of non-auto.
    
    Setting the default for tiles to 1 fixes the problem.
    jcheng5 committed Aug 18, 2017
    Configuration menu
    Copy the full SHA
    a807435 View commit details
    Browse the repository at this point in the history
  2. Fix issue with rasters disappearing

    The getImageData(callback) function as previously written
    would invoke the callback immediately if image data was
    already loaded, or asynchronously if image data was not.
    (I knew this was weird so I noted this in the function's
    comment.) This turns out to be a problem with Leaflet 1.x
    because it expects createTile's callback (done) function
    to only be invoked after createTile has returned. If done
    is called too soon, then it's ignored, because done first
    checks the GridLayer's tile cache to see if the tile that's
    done is even still wanted. Since createTile hasn't returned
    the tile isn't in the cache yet, and done becomes a no-op.
    jcheng5 committed Aug 18, 2017
    Configuration menu
    Copy the full SHA
    bb4e33d View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2017

  1. Configuration menu
    Copy the full SHA
    3e65a74 View commit details
    Browse the repository at this point in the history
  2. Upgrade to Leaflet 1.2.0

    jcheng5 committed Aug 21, 2017
    Configuration menu
    Copy the full SHA
    b719a0f View commit details
    Browse the repository at this point in the history
  3. Rebuild docs

    jcheng5 committed Aug 21, 2017
    Configuration menu
    Copy the full SHA
    d19bd52 View commit details
    Browse the repository at this point in the history