Richard Zimerman
Richard Zimerman
Hi @Unionindesign, There is a problem currently with the way markers are handled by react-simple-maps. I made an example [codesandbox with staggered custom markers](https://codesandbox.io/s/6zz13vv1jw) using [react-pose](https://popmotion.io/pose/) for the animation. To...
I made a similar drill down experiment with a world map and a cantonal map of Switzerland a while back on codesandbox. It could provide some basis for what you...
There are no built-in tools for building legends in react-simple-maps, but using the gradient approach should work. I've been planning to add an example with that, but didn't get around...
Hi @ayaseef, Does this go in the right direction? You can do some quite granular filtering via the `filterZoomEvent` prop. https://codesandbox.io/s/react-simple-maps-zoom-event-filtering-szbfy?file=/src/MapChart.js
Hi @alkshendra-SEQ, Yeah, unfortunately the geoAlbersUsa projection bundled with d3-geo does not by default include Puerto Rico. I know there have been some attempts to create a custom albers USA...
I put together a codesandbox here: https://codesandbox.io/s/albers-usa-overseas-territories-bgzg9?file=/src/MapChart.js based on the projection code from: https://observablehq.com/@almccon/u-s-map-with-puerto-rico I added some paint-order and stroke stuff to make the islands a bit more prominent. Hope...
Ok, I found the issue. This should now work for Puerto Rico: https://codesandbox.io/s/albers-usa-puerto-rico-bgzg9?file=/src/MapChart.js
Hi @Veropla92, Does this describe a similar issue to #223? Let me know if the solutions there help you
With v2 this should now be possible. With `translateExtent` you should be able to limit the drag boundaries like with d3-zoom.
Hi @rbent98, Currently, react-simple-maps does not handle these multilayered topojson/geojson files. You can do two things though: 1. Use multiple `Geographies`. You can use more than one `` component in...