Next-generation IDE by JetBrains
https://www.jetbrains.com/fleet/
| /** | |
| * A Leaflet Control, to request fullscreen for map (no CSS, no image) | |
| * | |
| * @example new FullscreenControl({ position: "topleft" }).addTo(map); | |
| */ | |
| export class FullscreenControl extends L.Control { | |
| onAdd() { | |
| const container = L.DomUtil.create("div", " leaflet-bar"); | |
| const link = L.DomUtil.create("a", undefined, container); | |
| link.innerHTML = "⛶"; |
| /* | |
| * Parser definition for the main MapCSS parser: | |
| * | |
| * <pre> | |
| * | |
| * rule | |
| * _______________________|______________________________ | |
| * | | | |
| * selector declaration | |
| * _________|___________________ _________|____________ |
Next-generation IDE by JetBrains
https://www.jetbrains.com/fleet/
Differences to the Leaflet API between version 1.9.4 and 2.0.0-alpha.1-87-gf33fbefb as outlined in the Leaflet 2.0 Alpha released blog post and subsequent commits.
Generated from diffing the entries https://devdocs.io/docs/leaflet~1.9/index.json and https://devdocs.io/docs/leaflet~2.0/index.json which are based https://leafletjs.com/reference.html and https://leafletjs.com/reference-2.0.0.html, respectively.
diff --git a/leaflet-1.9.txt b/leaflet-2.0.txt
index fdb6047..80e1b86 100644
--- a/leaflet-1.9.txt