We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b88e745 commit 349087cCopy full SHA for 349087c
src/main/java/io/github/makbn/jlmap/layer/leaflet/LeafletControlLayerInt.java
@@ -12,17 +12,16 @@
12
* @author Mehdi Akbarian Rastaghi (@makbn)
13
*/
14
public interface LeafletControlLayerInt {
15
- public static final double ZOOM_DELTA = 1;
16
17
/**
18
- * Increases the zoom of the map by delta ({@link #ZOOM_DELTA} by default).
+ * Increases the zoom of the map by delta
19
*
20
* @see <a href="https://leafletjs.com/reference.html#map-zoomin">leafletjs.com/reference.html#map-zoomin</a>
21
22
void zoomIn(int delta);
23
24
25
- * Decreases the zoom of the map by delta ({@link #ZOOM_DELTA} by default).
+ * Decreases the zoom of the map by delta
26
27
* @see <a href="https://leafletjs.com/reference.html#map-zoomout">
28
* leafletjs.com/reference.html#map-zoomout</a>
0 commit comments