![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
leaflet-transparency
Advanced tools
Leaflet plugin that allows to add an opacity control.
For a working example see demo
Initally based on the google-transparency plugin
<head>
...
<style>html, body, #map { width: 100%; height: 100%; margin: 0; padding: 0; }</style>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.2/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.3.2/dist/leaflet.js"></script>
<script src="https://unpkg.com/leaflet-transparency@latest/leaflet-transparency.js"></script>
...
</head>
<body>
...
<div id="map"></div>
...
</body>
<script>
var opts = {
map: {
center: [41.4583, 12.7059],
zoom: 5,
},
otmLayer: {
url: 'https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
options: {
attribution: 'Map data: © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: © <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)',
maxZoom: 17,
},
},
satelliteLayer: {
url: 'http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
options: {
attribution: '© <a href="http://www.esri.com/">Esri</a>',
maxZoom: 18,
},
},
opacityBaseControl: {
options: {
sliderImageUrl: "images/opacity-slider2.png",
backgroundColor: "rgba(0, 0, 0, 0.9)",
opacity: 1,
position: 'topright',
}
},
opacityOverlayControl: {
options: {
sliderImageUrl: "images/opacity-slider2.png",
backgroundColor: "rgba(229, 227, 223, 0.9)",
opacity: 0.75,
position: 'topright',
}
},
};
var map = new L.Map('map', opts.map);
var layer = new L.TileLayer(opts.otmLayer.url, opts.otmLayer.options);
var overlay = new L.TileLayer(opts.satelliteLayer.url, opts.satelliteLayer.options);
var controlBaseOpacity = new L.Control.OpacitySlider(null, opts.opacityBaseControl.options);
var controlOverlayOpacity = new L.Control.OpacitySlider(overlay, opts.opacityOverlayControl.options);
controlBaseOpacity.addTo(map);
controlOverlayOpacity.addTo(map);
layer.addTo(map);
</script>
Compatibile with: leaflet@1.3.2
Contributors: Raruto
FAQs
A Leaflet plugin that allows to add an opacity control
The npm package leaflet-transparency receives a total of 123 weekly downloads. As such, leaflet-transparency popularity was classified as not popular.
We found that leaflet-transparency demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.