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

v3.0.1

28 Aug 17:32
Compare
Choose a tag to compare

Updated

  • Updated dependencies (#191)
  • Updated version export style (#190)

v3.0.0

24 Jun 16:14
Compare
Choose a tag to compare

Changed

  • Updated esri-leaflet peer dependency version in package.json so that there will not be errors when installing via NPM (#177)

Updated

  • Fixed renderers when working with esri-leaflet-cluster (#179)

v2.1.3

08 Mar 15:23
Compare
Choose a tag to compare

Updated

  • Updated dependencies and changed build-related settings to be consistent with Esri Leaflet (#171)

v2.1.2

06 Jul 15:14
Compare
Choose a tag to compare

Changed

  • Update esri-leaflet-cluster version in package.json (🙏francharbo🙏 #160)

v2.1.1

23 Jun 15:32
Compare
Choose a tag to compare

Fixed

  • Follow-up to #144 to fix the clustering changes (🙏jgravois🙏 #158)

v2.1.0

19 Jun 14:39
Compare
Choose a tag to compare

Added

Changed

  • esri-leaflet, leaflet, and leaflet-shape-markers are now peer dependencies (#154)

v2.0.6

02 Jun 17:32
Compare
Choose a tag to compare

Fixed

  • bug that mangled server side color interpretation

v2.0.5

02 Jun 16:54
Compare
Choose a tag to compare

Added

  • support for loading via AMD
  • support for Node 7

Fixed

  • ensure that point geometry layers are assigned to Leaflet's markerPane by default

v2.0.4

17 Aug 18:51
Compare
Choose a tag to compare

Added

  • support for picture marker symbols stored outside the ArcGIS ecosystem

Fixed

  • ensure the plugin only fires one metadata requests
  • ensure that [esriSLSNull] symbol types display correctly

v2.0.3

01 Jul 19:38
Compare
Choose a tag to compare

Added

  • support for base64 encoded PictureMarkerSymbols. thx @ynunokawa!
  • support for overriding service symbology with 'drawingInfo' provided in L.esri.featureLayers constructor. thx @ynunokawa!
var fl = L.esri.featureLayer({
  url: 'http://sampleserver6.arcgisonline.com/arcgis/rest/services/Census/MapServer/0',
  drawingInfo: {
    "renderer": {
      "type": "simple",
      "symbol": {
        "type": "esriSMS",
        "style": "esriSMSCircle",
        "color": [115, 178, 255, 255],
        "size": 10,
        "angle": 0,
        "xoffset": 0,
        "yoffset": 0,
        "outline": {
         "color": [0, 0, 0, 255],
         "width": 1
        }
      },
      "label": "",
      "description": ""
    },
    "transparency": 0,
    "labelingInfo": null
  }
}).addTo(map);

Fixed

  • odd cases where a subset of features were drawn with leaflet symbology.

Added