Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
Please take a look at previous issues that resolve common problems.
If you're just looking for help, you'll probably attract the most eyes if you post in GIS Stackexchange or the Esri Leaflet place on GeoNet.
If you think you're encountering a new bug, please feel free to log an issue and include the steps to reproduce the problem (and preferably a running sample).
There is a lot of room for contributions to Esri Leaflet and Esri Leaflet Renderers. Make sure you checkout the development instructions in the readme to help you get started.
The Esri Leaflet website is written using http://assemble.io/ and can be found at https://github.com/Esri/esri-leaflet/tree/master/site/source. You can use the existing examples as a reference.
- Fork and clone Esri Leaflet Renderers
cd
into theesri-leaflet-renderers
folder- Install the dependencies with
npm install
- run
grunt
from the command line. This will start the web server locally at http://localhost:8001 and start watching the source files and running linting and testing commands. - Make your changes and create a pull request
Please make sure your changes pass JS Hint. This will help make sure code is consistent throughout Esri Leaflet. You can run JS Hint with grunt jshint
.
Please make sure your changes dont break existing tests. Testing is essential for determining backward compatibility and catching breaking changes. You can run tests with grunt karma:run
, grunt karma:watch
or grunt karma:coverage.