VictorCazanave / react-svg-map

A set of React.js components to display an interactive SVG map
https://victorcazanave.github.io/react-svg-map/
MIT License
225 stars 47 forks source link

Is there anyway to zoom in on a particular path onClick? #48

Closed bkrmalick closed 4 years ago

bkrmalick commented 4 years ago

For the below example. Is there any way to zoom onto a state when clicking on it?

image

VictorCazanave commented 4 years ago

I'm not sure whether this is possible. You may try to play with CSS to hide the other states and scale the map (transform: scale()) 🤔

bkrmalick commented 4 years ago

I've been able to use https://github.com/chrvadala/react-svg-pan-zoom as a wrapper.

Thanks.