Statics are before non-statics.
- Constants
- Public constants
- Private constants
- Attributes
- Public attributes
- Private attributes
- Constructors
- Public Inner Classes
- Methods
- Of methods (constructor like)
- Public methods
- Public overrides
- Private methods
- JavaFX related methods
- Other private methods
- Private Inner Classes
The styling rules are defined in the java-style-rules.xml file.
Created a new static method of(double lat, double lon)
designed to be human friendly and mainly used in testing.
It takes a latitude and longitude in degrees and returns the corresponding PointWebMercator
object.
Created a new static method of(PointWebMercator point, int zoomLevel)
designed to retrieve the TileId
containing a point in the Web Mercator projection.
Changed the method withMinXY
to another method withShiftedBy
.
It allows to shift the map view by a given amount along the X and Y axis.
We changed the method because we actually want to shift the map view when using withMinXY
which required to call the getters of the map view.
We were frustrated by the fact that when we try to zoom with the cursor on a waypoint's pin, the zoom was not performed as it was registered by the scroll event of the pin and not the one from the map pane. We decided to cascade the waypoint's pin's zoom event to the map pane's zoom event.