@amsterdam/react-maps
v1.1.1
Published
ReactJS wrapped around Leaflet
Downloads
2,073
Maintainers
Keywords
Readme
React Maps
Please do not use this package anymore.
All dependencies can also be found at: npm install --save @amsterdam/arm-core
Loosely implemented package using react with leaflet. As compared to the existing react-leaflet, we want to set up things different in this repo:
- React and leaflet are decoupled as much as possible. We don't want to introduce any side effects based on leaflet options, methods and events. This way it's way less painful updating the leaflet dependency.
- Build components the 'react way', no extending js classes.
- Barely any documentation. Users should just be referred to the existing leaflet documentation.
- Pluggable: by using the
useMapInstance
, users can just attach their own plugin / leaflet extension to the map instance.
Usage
npm install --save @amsterdam/react-maps
- exports useMapInstance, useMapEvents, useEvents, ToolTip, Popup, etc.
Developing
Install dependencies: npm install
Start the example app: npm run start
and check out http://localhost:8080
Checkout ./src/example/App.tsx
for how to implement the components.
Link to existing project
First build the package: npm run build
Then simply execute npm link
in this repo, then in your repo where you want implement this package npm link @amsterdam/react-maps
Then we have just one issue: we now have two react dependencies: one in your project, and the one in this repo. This will unfortunately resolve in an error. There are two ways of fixing this:
- Add the following to your webpack config:
...
resolve: {
modules: ['node_modules'],
extensions: ['.js', '.jsx'],
alias: {
react: path.resolve('./node_modules/react'),
'react-dom': path.resolve('./node_modules/react-dom'),
},
},
- In case you don't have a webpack config, or using create-react-app Manually delete
react
andreact-dom
folder in this repo in thenode_modules
.