Skip to content

Commit

Permalink
📦 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jgravois committed Feb 14, 2018
1 parent b4a5172 commit c3fadad
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 18 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]

## [2.1.3] - 2018-02-14

### Added

* new `ImageryClarity` basemapLayer (🙏Biboba🙏 [#1047](https://github.com/Esri/esri-leaflet/pull/1047))
* dynamic attribution for `WorldImagery` basemap layer to attribute local Community Maps content providers

### Fixed

* smarter check for custom coordinate systems [#1045](https://github.com/Esri/esri-leaflet/pull/1045))
* removed rogue `Proj4` console errors in webpack/browserify apps
* caught the last few non ES6 imports from Leaflet (🙏finneganh🙏 [#1050](https://github.com/Esri/esri-leaflet/pull/1050))

## [2.1.2] - 2018-01-04

### Fixed
Expand Down Expand Up @@ -575,7 +588,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/v2.1.2...HEAD
[unreleased]: https://github.com/esri/esri-leaflet/compare/v2.1.3...HEAD
[2.1.2]: https://github.com/esri/esri-leaflet/compare/v2.1.2...v2.1.3
[2.1.2]: https://github.com/esri/esri-leaflet/compare/v2.1.1...v2.1.2
[2.1.1]: https://github.com/esri/esri-leaflet/compare/v2.1.0...v2.1.1
[2.1.0]: https://github.com/esri/esri-leaflet/compare/v2.0.8...v2.1.0
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ The easiest way to get started is to load Esri Leaflet via [CDN](https://unpkg.c
<html>
<head>
<!-- Load Leaflet from CDN -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css"
integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"
integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log=="
crossorigin=""></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>

<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/esri-leaflet@2.1.2"></script>
<script src="https://unpkg.com/esri-leaflet@2.1.3"></script>

<style>
html, body, #map {
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "esri-leaflet",
"description": "Leaflet plugins for consuming ArcGIS Online and ArcGIS Server services.",
"version": "2.1.2",
"version": "2.1.3",
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"browser": "dist/esri-leaflet-debug.js",
"bugs": {
Expand All @@ -13,7 +13,7 @@
],
"dependencies": {
"@esri/arcgis-to-geojson-utils": "^1.0.5",
"leaflet-virtual-grid": "^1.0.3",
"leaflet-virtual-grid": "^1.0.5",
"tiny-binary-search": "^1.0.2"
},
"devDependencies": {
Expand Down

0 comments on commit c3fadad

Please sign in to comment.