|
| 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