Skip to content

Commit

Permalink
📦 3.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinr-maps committed Jan 17, 2023
1 parent cb99687 commit ea69615
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 15 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]

## [3.0.10] - 2023-01-17

### Fixed

- Fixed issue with popups when using Leaflet v1.9.3 ([#1350](https://github.com/Esri/esri-leaflet/pull/1350))

### Changed

- Updated dependencies ([#1351](https://github.com/Esri/esri-leaflet/pull/1351))

## [3.0.9] - 2022-12-09

### Fixed
Expand Down Expand Up @@ -840,7 +850,8 @@ None
- Add DarkGray and DarkGrayLabels to BasemapLayer. #190
- An attributionControl on maps is now required when using BasemapLayer. #159

[unreleased]: https://github.com/esri/esri-leaflet/compare/v3.0.9..HEAD
[unreleased]: https://github.com/esri/esri-leaflet/compare/v3.0.10..HEAD
[3.0.10]: https://github.com/esri/esri-leaflet/compare/v3.0.9...v3.0.10
[3.0.9]: https://github.com/esri/esri-leaflet/compare/v3.0.8...v3.0.9
[3.0.8]: https://github.com/esri/esri-leaflet/compare/v3.0.7...v3.0.8
[3.0.7]: https://github.com/esri/esri-leaflet/compare/v3.0.6...v3.0.7
Expand Down
17 changes: 8 additions & 9 deletions debug/sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@
<body>
<div id="map"></div>
<div id="info-pane" class="leaflet-bar">
<label>
sample application for debugging
</label>
<label> sample application for debugging </label>
</div>

<script>
Expand All @@ -68,15 +66,16 @@

var fl = L.esri
.featureLayer({
url:
"https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/flash_flood_warnings_2002_2012/FeatureServer/0"
url: "https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/flash_flood_warnings_2002_2012/FeatureServer/0",
})
.addTo(map);

L.esri.dynamicMapLayer({
url: 'https://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer',
opacity: 0.7
}).addTo(map);
L.esri
.dynamicMapLayer({
url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Elevation/WorldElevations/MapServer",
opacity: 0.4,
})
.addTo(map);
</script>
</body>
</html>
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "esri-leaflet",
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
"version": "3.0.9",
"version": "3.0.10",
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"bugs": {
"url": "https://github.com/esri/esri-leaflet/issues"
},
"contributors": [
"Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"John Gravois <[email protected]> (https://johngravois.com)",
"John Gravois (https://johngravois.com)",
"Gavin Rehkemper <[email protected]> (https://gavinr.com)",
"Jacob Wasilkowski <[email protected]> (https://jwasilgeo.github.io)"
"Jacob Wasilkowski (https://jwasilgeo.github.io)"
],
"dependencies": {
"@terraformer/arcgis": "^2.1.0",
Expand Down

0 comments on commit ea69615

Please sign in to comment.