leaflet-d3-layer icon indicating copy to clipboard operation
leaflet-d3-layer copied to clipboard

A Leaflet GeoJSON layer that utilizes d3.js

Results 2 leaflet-d3-layer issues
Sort by recently updated
recently updated
newest added

This fix addresses the issue discussed https://github.com/rclark/leaflet-d3-layer/issues/1. I've added an option to allow the user to specify a function that would pick the appropriate unique identifier. I've also added information...

This code only works when the GeoJSON has the id property set: ``` join = paths.data(this.geojson.features, function(d) { return d.id; }); ``` In the GeoJSON spec the id property of...