Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Releases: Esri/esri-leaflet-renderers

v2.0.2

15 Jun 16:56
Compare
Choose a tag to compare

Added

  • now its possible for individual featureLayers to not utilize the renderer defined by the service (when ignoreRenderer: true is included as a contructor option)

Fixed

  • Ensured that its possible to specify custom panes for marker symbols (thanks @pbastia!)
  • Race condition encountered when metadata is slow to load

Changed

  • Build system refactored to use latest Rollup and Rollup plugins.
  • Reworked bundling directives for various modules systems to resolve and simplify various issues
    • WebPack users no longer have to use the Babel loader.
    • Babelify with Babel 6 now works

v2.0.1

20 Jan 15:54
Compare
Choose a tag to compare

Added

  • Now developers can now override individual style properties of interest directly in the FeatureLayer constructor. (via pull #100)
L.esri.featureLayer({
  url: 'http://[server]/arcgis/rest/services/[yourservice]/MapServer/0',
  style: function (feature) {
    return {
      // override service symbology to make polygon fill 50% transparent
      fillOpacity: 0.5
    };
  }
}).addTo(map);

1.0.1

30 Nov 21:26
Compare
Choose a tag to compare
v1.0.1

update cdn references to 1.0.1

v2.0.0

10 Sep 20:06
Compare
Choose a tag to compare

This is the first release that supports Leaflet 1.0.0-beta.1. As with version 1.0.0 of Esri Leaflet, FeatureLayer constructors now expect urls to be provided within an options object (ie: L.esri.featureLayer(url) should be replaced with L.esri.featureLayer( {url: url} )).

Changed

  • Rewritten build and test systems to rely on ES 2015 Modules specification
  • More build and release automation

1.0.0

08 Sep 18:43
Compare
Choose a tag to compare

This is expected to be the last (and only) stable release of Esri Leaflet Renderers compatible with Leaflet 0.7.3. All future 1.0.X releases will be compatible with Leaflet 0.7.3 and contain only bug fixes. New features will only be added in Esri Leaflet Renderers 2.0.0 (which will require Leaflet 1.0.0).

Breaking Changes

  • In Esri Leaflet itself, in L.esri.FeatureLayer constructors, the url is now provided within an options object (ie: L.esri.featureLayer(url) should be replaced with L.esri.featureLayer( {url: url} )).

Added

  • support for unique value renderers based on more than one field
  • support for transparency applied to the entire renderer

Fixed

  • ensured that tokens are passed through in requests for picture marker symbols

v0.0.1-beta.3

24 Mar 23:49
Compare
Choose a tag to compare
  • Render from the new visualVariables objects in the renderer JSON
  • Still backwards compatible with classic renderers

v0.0.1-beta.2

03 Mar 00:17
Compare
Choose a tag to compare
v0.0.1-beta.2 Pre-release
Pre-release
  • Fix to work with Browserify
  • Update to work with esri-leaflet 1.0.0-rc.5
  • Still backwards compatible with esri-leaflet 1.0.0-rc.4

Beta 1

30 Jan 01:00
Compare
Choose a tag to compare
Beta 1 Pre-release
Pre-release
  • First Beta release
  • Works with esri-leaflet 1.0.0-rc.4 and higher