Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.