Adds support for the Amersfoort / RD New coordinate system
npm install leaflet-rd 
This plugin adds support for the Amersfoort / RD New coordinate system.
Created for leaflet 1.0 and up. Leaflet 1.1 not supported, use 1.2 in stead.
To immediately start using RD resources on your map set the CRS of your Leaflet map to L.CRS.RD:
``javascript`
var map = L.map("map", {
crs: L.CRS.RD,
});
The plugin exports L.CRS.RD, in node the following is also possible:
`javascript
import rd from 'leaflet-rd';
var map = L.map("map", {
crs: rd,
});
``