We implemented a zoom function like the Google Maps zoom function on a existing SVG map.
That is our zoom function...
public void zoomBy(double zoomBy, int x, int y) {
_controller.getView().setZoomLevel(factor, x, y);
…....
We can zoom in/out with a slider, buttons or the mouse wheel. Our problem: if we use the slider/buttons we want to zoom in/out in the middle of the map/view. But we don't know how we can get the information about the x and y position. (the view is an OMSVGSVGElement)
Thanks in advance!