This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
Releases: Esri/esri-leaflet-renderers
Releases · Esri/esri-leaflet-renderers
v2.0.2
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
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
v2.0.0
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 url
s 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
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 withL.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
- Render from the new visualVariables objects in the renderer JSON
- Still backwards compatible with classic renderers
v0.0.1-beta.2
- 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
- First Beta release
- Works with esri-leaflet 1.0.0-rc.4 and higher