-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into update-from-template-merged
- Loading branch information
Showing
122 changed files
with
9,178 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github: Leaflet | ||
open_collective: leafletjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
contact_links: | ||
- name: 🍃 Leaflet docs | ||
url: https://leafletjs.com/reference.html | ||
about: "Consolidate this when you have questions about Leaflet itself (and not our Vaadin component)" | ||
- name: 💬 Contact support | ||
url: https://xdev.software/en/services/support | ||
about: "If you need support as soon as possible or/and you can't wait for any pull request" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: No Response | ||
|
||
on: | ||
workflow_dispatch: | ||
issue_comment: | ||
types: [created] | ||
schedule: | ||
- cron: '5 5 * * *' | ||
|
||
jobs: | ||
noResponse: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
days-before-issue-stale: 7 | ||
days-before-issue-close: 3 | ||
stale-issue-label: "stale" | ||
only-labels: "waiting-for-response" | ||
labels-to-remove-when-unstale: "waiting-for-response" | ||
stale-issue-message: "This issue will be closed soon because there has been no further activity." | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
## 4.4.0 | ||
* Added support for [GeoJSON](https://leafletjs.com/reference.html#geojson) and [FeatureGroup](https://leafletjs.com/reference.html#featuregroup) #438 | ||
* Add "draggable" property to LMarkerOptions #413 (thanks to @ChristianHoesel) | ||
|
||
## 4.3.0 | ||
* Updated to Vaadin 24.4 | ||
* Deduplicated ``tLMapZoomPanOptions`` | ||
|
||
## 4.2.1 | ||
* Handle ``LEvented#off`` in the same way as ``LEvented#on`` | ||
* Fix incorrect formatting leading to JS error | ||
* Updated dependencies | ||
|
||
## 4.2.0 | ||
* Fixed some invalid built JavaScript commands #330 | ||
* Add basic support for CRS #333 | ||
* Added a few new showcase demos | ||
* Updated dependencies | ||
|
||
## 4.1.1 | ||
* ⚠️ GroupId changed from ``com.xdev-software`` to ``software.xdev`` | ||
* Updated dependencies | ||
|
||
## 4.1.0 | ||
* Provide a workaround that fixes a problem where certain methods didn't work instantly after the map was created #305 | ||
* Moved some container specific methods to ``MapContainer`` | ||
|
||
## 4.0.1 | ||
* Added shortcut method ``invokeSelfReturn`` #282 | ||
* Updated dependencies | ||
|
||
## 4.0.0 | ||
⚠️<i>This release contains breaking changes</i> | ||
|
||
* The complete API got reworked and now has the [same structure as Leaflet](https://leafletjs.com/reference.html). | ||
* Added lots of new Leaflet APIs - currently around 90% of the Leaflet API are implemented. These include the most useful bits: | ||
* GeoLocation | ||
* A lot of new methods for Map | ||
* Tooltips & Popups | ||
* Image, Video and SVG-Overlays | ||
* Rectangles | ||
* Controls for Scale, Layers, ... | ||
* and much more | ||
* Abstracted the elements similar to how this is done inside Leaflet itself so that they can easily be extended | ||
* The API only supports sending instructions to the client. Retrieving client side data is not supported as data integrity can't be guaranteed (client-side data can be modified by users). | ||
* Event listeners can still be registered but this needs to be done manually. A example is available in the demo. | ||
* All Leaflet elements are now tracked on the client and on the server and can therefore be modified/reused (using ``LComponentManagementRegistry``). | ||
* Before it was only possible to create an element and then send it to the client | ||
* However keep in mind when creating a lot of elements that you may have to free up memory on the client (manually) | ||
* Integrated default Leaflet resources | ||
|
||
## 3.0.2 | ||
* Added support for Polyline #266 (thanks to @blitzdose) | ||
|
||
## 3.0.1 | ||
* Fixed ``divIcon`` being displayed incorrectly [due to a default ``iconSize`` of ``12px``](https://github.com/Leaflet/Leaflet/issues/4238) #246 | ||
* Updated dependencies | ||
* Updated leaflet to [``1.9.4``](https://github.com/Leaflet/Leaflet/blob/b6b56f6e707142c177fad2f67827a5007e56736a/CHANGELOG.md#194-2023-05-18) #247 | ||
|
||
## 3.0.0 | ||
⚠️<i>This release contains breaking changes</i> | ||
|
||
* Adds support for Vaadin 24+, drops support for Vaadin 23<br/> | ||
<i>If you are still using Vaadin 23, use the ``2.x`` versions.</i> | ||
* Requires Java 17+ | ||
|
||
## 2.0.4 | ||
* Added method ``centerAndZoom`` in ``LMap`` | ||
* Fixed a problem where an invalid ``iconSize`` was transferred to leaflet which caused a client side exception (#199) | ||
* Updated various dependencies | ||
|
||
## 2.0.3 | ||
* Updated dependencies | ||
* Fixed problem with setting lon/lan in LMarker | ||
* Added constructors for LMap | ||
|
||
## 2.0.2 | ||
* Updated dependencies | ||
|
||
## 2.0.1 | ||
* Updated dependencies | ||
* Vaadin 23.2 | ||
|
||
## 2.0.0 | ||
⚠️<i>This release contains breaking changes</i> | ||
|
||
* Update to Vaadin 23 | ||
* Removed deprecated polymer-connector - replaced by ``executeJs`` | ||
* Fixed a problem where the map was not rendered/aligned correctly | ||
* Don't load anything from remote servers that are not under control of the user | ||
* Shrunk the jar | ||
* Removed default leafletmap tile layer; has to be set manually due to usage policy | ||
* Updated dependency versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.