We are about to switch to a new forum software. Until then we have removed the registration on this forum.
In my own sketch and in examples that come with Unfolding Maps, the method "ZoomAndPanTP (...)" generates a comment that the method is deprecated which I take to mean should not be used but its not removed. What should I replace it with?
Answers
I am sure you meant to say ZoomAndPanTo() instead of TP:
http://unfoldingmaps.org/javadoc/de/fhpotsdam/unfolding/UnfoldingMap.html#zoomAndPanTo(int, de.fhpotsdam.unfolding.geo.Location)
Kf
The method zoomAndPanTo(Location, zoomLevel) is deprecated, and instead zoomAndPanTo(zoomLevel, Location) should be used. The parameter order in the latter method fits the name, thus the change.
(Which version of Unfolding and Processing are you using?)
Just added as a feature request. https://github.com/processing/processing/issues/4967