Skip to content

Commit 4e2ee4f

Browse files
GubancsGabor Kokeny
and
Gabor Kokeny
authored
Add className to Tootip (#28)
* #27 Add className to Tootip * updated pom version to 0.5.0 Co-authored-by: Gabor Kokeny <[email protected]>
1 parent b4d9bae commit 4e2ee4f

File tree

7 files changed

+326
-271
lines changed

7 files changed

+326
-271
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.vaadin</groupId>
66
<artifactId>leaflet4vaadin</artifactId>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
<name>Leaflet4Vaadin</name>
99
<description>Integration of Leaflet map for Vaadin platform LTS 14</description>
1010
<scm>

src/main/java/com/vaadin/addon/leaflet4vaadin/layer/Layer.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,9 @@ public void bindPopup(String popupContent) {
199199
bindPopup(new Popup(popupContent));
200200
}
201201

202-
public void bindPopup(Popup popupOptions) {
203-
this.popup = popupOptions;
202+
public void bindPopup(Popup popup) {
203+
popup.setParent(this);
204+
this.popup = popup;
204205
}
205206

206207
public Tooltip getTooltip() {
@@ -211,8 +212,9 @@ public void bindTooltip(String tooltipContent) {
211212
bindTooltip(new Tooltip(tooltipContent));
212213
}
213214

214-
public void bindTooltip(Tooltip tooltipOptions) {
215-
this.tooltip = tooltipOptions;
215+
public void bindTooltip(Tooltip tooltip) {
216+
tooltip.setParent(this);
217+
this.tooltip = tooltip;
216218
}
217219

218220
public <T> void set(Supplier<CompletableFuture<T>> futureResult, Consumer<T> handler) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
// Copyright 2020 Gabor Kokeny and contributors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package com.vaadin.addon.leaflet4vaadin.layer.ui;
16+
17+
import com.vaadin.addon.leaflet4vaadin.layer.Layer;
18+
import com.vaadin.addon.leaflet4vaadin.types.LatLng;
19+
import com.vaadin.addon.leaflet4vaadin.types.Point;
20+
21+
import java.util.concurrent.CompletableFuture;
22+
23+
/**
24+
* Base model for L.Popup and L.Tooltip. Inherit from it for custom popup like plugins.
25+
*
26+
* @author <strong>Gabor Kokeny</strong> Email:
27+
28+
* @version 1.0
29+
* @see com.vaadin.addon.leaflet4vaadin.layer.ui.popup.Popup
30+
* @see com.vaadin.addon.leaflet4vaadin.layer.ui.tooltip.Tooltip
31+
* @since 2020-10-01
32+
*/
33+
public abstract class DivOverlay extends Layer {
34+
35+
private String content;
36+
private String className = "";
37+
private Point offset = Point.of(0, 7);
38+
39+
protected DivOverlay(String content) {
40+
this.content = content;
41+
}
42+
43+
/**
44+
* A custom CSS class name to assign to the overlay.
45+
*
46+
* @return the CSS class name to assign to the overlay.
47+
*/
48+
public String getClassName() {
49+
return className;
50+
}
51+
52+
public void setClassName(String className) {
53+
this.className = className;
54+
}
55+
56+
/**
57+
* The offset of the overlay position. Useful to control the anchor
58+
* of the overlay when opening it on some overlays.
59+
*
60+
* @return the offset of the overlay position
61+
*/
62+
public Point getOffset() {
63+
return offset;
64+
}
65+
66+
public void setOffset(Point offset) {
67+
this.offset = offset;
68+
}
69+
70+
71+
/**
72+
* Returns the geographical point of popup.
73+
*
74+
* @return the geographical point of popup.
75+
*/
76+
public CompletableFuture<LatLng> getLatLng() {
77+
return call("getLatLng", LatLng.class);
78+
}
79+
80+
/**
81+
* Sets the geographical point where the overlay will open.
82+
*
83+
* @param latLng the geographical point where the overlay will open
84+
*/
85+
public void setLatLng(LatLng latLng) {
86+
executeJs("setLatLng", latLng);
87+
}
88+
89+
90+
/**
91+
* Returns the content of the overlay.
92+
*
93+
* @return the content of the overlay.
94+
*/
95+
public String getContent() {
96+
return this.content;
97+
}
98+
99+
/**
100+
* Sets the HTML content of the overlay. If a function is passed the source layer will be passed to the function.
101+
*
102+
* @param content the content of the overlay
103+
*/
104+
public void setContent(String content) {
105+
this.content = content;
106+
executeJs("setContent", content);
107+
}
108+
}

0 commit comments

Comments
 (0)