-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 1.8.4: support Interactive Map Layer - IML (experimental)
Merge branch 'dev.iml' into master ref: da63a13
- Loading branch information
Showing
58 changed files
with
2,293 additions
and
788 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,9 @@ | ||
include: | ||
- template: Security/Secret-Detection.gitlab-ci.yml | ||
- template: Security/License-Scanning.gitlab-ci.yml | ||
- template: Security/Dependency-Scanning.gitlab-ci.yml | ||
- template: Security/SAST.gitlab-ci.yml | ||
|
||
secret_detection: | ||
variables: | ||
GIT_DEPTH: 100 |
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 |
---|---|---|
@@ -1,46 +1,55 @@ | ||
## Version 1.8.3 (2021-02-08) | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Updates HERE Tiles service URL | ||
|
||
🐛 FIXES 🐛 | ||
* Handles nested properties when uploading data | ||
* Fixes compatibility with QGIS 3.10, 3.16 | ||
|
||
## Version 1.8.2 (2020-06-10) | ||
|
||
✨ NEW FEATURES ✨ | ||
* Supports self-hosted XYZ Hub Server: token authentication, loading, uploading, editing data, managing spaces | ||
* Supports Property query and selection (XYZ Hub API) | ||
* Supports Api Key for HERE Tiles | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* UX improvement | ||
* Improved layer organization | ||
|
||
## Version 1.8.1 (2020-03-10) | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Loading tile using Web Mercator projection | ||
|
||
🐛 FIXES 🐛 | ||
* Fixed wrong data loaded from virtual space, cf. https://www.here.xyz/cli/cli/#virtual-spaces | ||
|
||
## Version 1.8.0 (2020-02-12) | ||
|
||
✨ NEW FEATURES ✨ | ||
* Introducing three loading modes: | ||
* Live loading - interactive mode for visualization of dynamic dataset with full editing capabilities | ||
* Incremental loading - interactive mode with caching for visualization and exploration of large dataset | ||
* Static loading - mode for importing and analysis of static dataset | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Improve interactive loading mode behaviors | ||
* Resume loading after open saved project or network interruption | ||
* Save loader params into project | ||
* Generate unique layer name | ||
|
||
🐛 FIXES 🐛 | ||
* Fix errors when delete layers or close project | ||
* Fix errors when opening project | ||
* Fix progress bar behavior | ||
## Version 1.8.4 (2021-06-08) | ||
|
||
✨ NEW FEATURES ✨ | ||
* Supports HERE Platform Interactive Map Layers - IML (experimental) | ||
* Enables loading, editing data in IML (experimental) | ||
|
||
🐛 FIXES 🐛 | ||
* Minor bug fixes | ||
|
||
## Version 1.8.3 (2021-02-08) | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Updates HERE Tiles service URL | ||
|
||
🐛 FIXES 🐛 | ||
* Handles nested properties when uploading data | ||
* Fixes compatibility with QGIS 3.10, 3.16 | ||
|
||
## Version 1.8.2 (2020-06-10) | ||
|
||
✨ NEW FEATURES ✨ | ||
* Supports self-hosted XYZ Hub Server: token authentication, loading, uploading, editing data, managing spaces | ||
* Supports Property query and selection (XYZ Hub API) | ||
* Supports Api Key for HERE Tiles | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* UX improvement | ||
* Improved layer organization | ||
|
||
## Version 1.8.1 (2020-03-10) | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Loading tile using Web Mercator projection | ||
|
||
🐛 FIXES 🐛 | ||
* Fixed wrong data loaded from virtual space, cf. https://www.here.xyz/cli/cli/#virtual-spaces | ||
|
||
## Version 1.8.0 (2020-02-12) | ||
|
||
✨ NEW FEATURES ✨ | ||
* Introducing three loading modes: | ||
* Live loading - interactive mode for visualization of dynamic dataset with full editing capabilities | ||
* Incremental loading - interactive mode with caching for visualization and exploration of large dataset | ||
* Static loading - mode for importing and analysis of static dataset | ||
|
||
⚡️ IMPROVEMENTS ⚡️ | ||
* Improve interactive loading mode behaviors | ||
* Resume loading after open saved project or network interruption | ||
* Save loader params into project | ||
* Generate unique layer name | ||
|
||
🐛 FIXES 🐛 | ||
* Fix errors when delete layers or close project | ||
* Fix errors when opening project | ||
* Fix progress bar behavior |
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 |
---|---|---|
|
@@ -12,12 +12,14 @@ | |
__copyright__ = "Copyright 2019, HERE Europe B.V." | ||
|
||
__license__ = "MIT" | ||
__version__ = "1.8.3" | ||
__version__ = "1.8.4" | ||
__maintainer__ = "Minh Nguyen" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
||
def classFactory(iface): | ||
"""invoke plugin""" | ||
from . import config | ||
config.load_external_lib() | ||
from .plugin import XYZHubConnector | ||
return XYZHubConnector(iface) |
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
Oops, something went wrong.