Michael N.
Michael N.
Is it by design, that d3.geoIdentity() doesn't implement `projection.center`? Using Mike's example code for projection transition at https://stackoverflow.com/questions/17045826/how-to-do-smooth-transition-for-map-reprojection-in-d3-js I ran into problems transitioning from an identity projection. Was easily fixed...
d3.js unfortunately lacks the _Jenks Natural Breaks_ as a scale for choropleth maps. There is a very well documented implementation of the algorithm available at https://github.com/simple-statistics/simple-statistics you can read more...
While I have been able to define a `threshold` scale, I have never been successful in specifying a `quantile` scale, instead it always results in the default `quantize` scale.
Say you wanted to have focus-rings on mousing over municipalities like so ``` path:hover {stroke: purple; stroke-width: 3;} ``` just add this line in the style section of https://github.com/floledermann/mapmap-examples/blob/master/tutorial/basics.html This...
Currently when you use the default `quantile` scale the resulting legend shows min/max values whereas the `threshold` scale results in a legend with _more than_ / _less than_ classes. While...
The current implementation of ``` .applyBehavior(mapmap.behavior.zoom()) ``` is certainly very elaborate but to my taste not always superior to traditional zoom/pan behavior via the mousewheel and simply dragging the map....
So far the map/reduce functionality is described as a way of aggregating data, e.g. population data for administrative districts from their municipalities. Is it also possible to use this for...
Check these examples: Pinch to zoom on a GridViz instance that takes the whole window works like expected, e.g. this one, where the zoom center roughly stays the same https://eurostat.github.io/gridviz/examples/DE.html...
Not sure if the donut shape is an established cartographic style in that the outer diameter always equals the grid-size and only the inner diameter is controlled by data but...
Dragging/Panning the map on a current iPad pro running iOS 16.5.1 I experience the following – even without WMS background layer: * the map only moves after I am ending...