We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello !
Help me please with such issue:
I use UnfoldingMaps in my project (0.9.6) and Processing 3.
All is good but my map do not want to be scalable with the mouse wheel . I was looking for a long time the solution of this problem, but I did not achieved success. Will be grateful for any help!
This is a list of code, that i use (not all code, just a part of initialization of map) :
public void settings() {
Dimension display = displayMeasure();
size(display.width, display.height, FX2D);
}
public void setup() {
map = new UnfoldingMap(this, 0, 0, 1000, 800, new Google.GoogleMapProvider());
map.setTweening(true);
surface.setResizable(true);
MapUtils.createDefaultEventDispatcher(this, map);
}