Skip to content

Commit ea69615

Browse files
committed
📦 3.0.10
1 parent cb99687 commit ea69615

File tree

4 files changed

+25
-15
lines changed

4 files changed

+25
-15
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased][unreleased]
77

8+
## [3.0.10] - 2023-01-17
9+
10+
### Fixed
11+
12+
- Fixed issue with popups when using Leaflet v1.9.3 ([#1350](https://github.com/Esri/esri-leaflet/pull/1350))
13+
14+
### Changed
15+
16+
- Updated dependencies ([#1351](https://github.com/Esri/esri-leaflet/pull/1351))
17+
818
## [3.0.9] - 2022-12-09
919

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

843-
[unreleased]: https://github.com/esri/esri-leaflet/compare/v3.0.9..HEAD
853+
[unreleased]: https://github.com/esri/esri-leaflet/compare/v3.0.10..HEAD
854+
[3.0.10]: https://github.com/esri/esri-leaflet/compare/v3.0.9...v3.0.10
844855
[3.0.9]: https://github.com/esri/esri-leaflet/compare/v3.0.8...v3.0.9
845856
[3.0.8]: https://github.com/esri/esri-leaflet/compare/v3.0.7...v3.0.8
846857
[3.0.7]: https://github.com/esri/esri-leaflet/compare/v3.0.6...v3.0.7

debug/sample.html

+8-9
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@
5353
<body>
5454
<div id="map"></div>
5555
<div id="info-pane" class="leaflet-bar">
56-
<label>
57-
sample application for debugging
58-
</label>
56+
<label> sample application for debugging </label>
5957
</div>
6058

6159
<script>
@@ -68,15 +66,16 @@
6866

6967
var fl = L.esri
7068
.featureLayer({
71-
url:
72-
"https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/flash_flood_warnings_2002_2012/FeatureServer/0"
69+
url: "https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/flash_flood_warnings_2002_2012/FeatureServer/0",
7370
})
7471
.addTo(map);
7572

76-
L.esri.dynamicMapLayer({
77-
url: 'https://services.arcgisonline.com/arcgis/rest/services/Specialty/Soil_Survey_Map/MapServer',
78-
opacity: 0.7
79-
}).addTo(map);
73+
L.esri
74+
.dynamicMapLayer({
75+
url: "https://sampleserver6.arcgisonline.com/arcgis/rest/services/Elevation/WorldElevations/MapServer",
76+
opacity: 0.4,
77+
})
78+
.addTo(map);
8079
</script>
8180
</body>
8281
</html>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "esri-leaflet",
33
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
4-
"version": "3.0.9",
4+
"version": "3.0.10",
55
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
66
"bugs": {
77
"url": "https://github.com/esri/esri-leaflet/issues"
88
},
99
"contributors": [
1010
"Patrick Arlt <[email protected]> (http://patrickarlt.com)",
11-
"John Gravois <[email protected]> (https://johngravois.com)",
11+
"John Gravois (https://johngravois.com)",
1212
"Gavin Rehkemper <[email protected]> (https://gavinr.com)",
13-
"Jacob Wasilkowski <[email protected]> (https://jwasilgeo.github.io)"
13+
"Jacob Wasilkowski (https://jwasilgeo.github.io)"
1414
],
1515
"dependencies": {
1616
"@terraformer/arcgis": "^2.1.0",

0 commit comments

Comments
 (0)