![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.
react-leaflet-div-icon
Advanced tools
marker that will use children as the content if the marker.
This extends the L.DivIcon class for react-leaflet. It allows a user to render some jsx onto the map, and control its position via the position
prop.
##Installation
npm install --save react-leaflet-div-icon
##Options
props are pass directly to DivIcon and Marker.
##Usage
make sure to edit the default .leaflet-div-icon
class from its default back border, white background when using this.
import React, { Component } from 'react';
import { Map, TileLayer, Marker, Popup } from 'react-leaflet';
import DivIcon from 'react-leaflet-div-icon';
export default class UserLocationExample extends Component {
constructor() {
super();
this.state = {
hasLocation: false,
latlng: {
lat: 51.505,
lng: -0.09,
},
};
}
handleClick() {
this.refs.map.leafletElement.locate();
}
handleLocationFound(e) {
this.setState({
hasLocation: true,
latlng: e.latlng,
});
}
render() {
const marker = this.state.hasLocation
? (
<DivIcon position={this.state.latlng}>
<svg className="user-location" viewBox="0 0 120 120" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<circle cx="60" cy="60" r="50"/>
</svg>
</DivIcon>
)
: null;
return (
<Map
center={this.state.latlng}
length={4}
onClick={::this.handleClick}
onLocationfound={::this.handleLocationFound}
ref='map'
zoom={13}>
<TileLayer
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
/>
{marker}
</Map>
);
}
}
FAQs
marker that will use children as the content if the marker.
The npm package react-leaflet-div-icon receives a total of 328 weekly downloads. As such, react-leaflet-div-icon popularity was classified as not popular.
We found that react-leaflet-div-icon 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.