Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make vertex markers on map drag and droppable #222

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
48f96e6
feat: add shift button to ui
merydian Jan 14, 2024
135f2e4
feat: make vertices on map drag and droppable
merydian Jan 14, 2024
363bdc3
style: remove print statements
merydian Jan 14, 2024
578e5fc
feat: update tooltip of move button
merydian Jan 14, 2024
b6b8999
fix: comment out reources_rc import
merydian Jan 15, 2024
e87e8e9
fix: error when using move mode with empty point list.
merydian Jan 15, 2024
10ee670
feat: display rubber band of route as preview in move mode
merydian Jan 15, 2024
af483ed
feat: move vertice shift mode to add vertices button
merydian Jan 18, 2024
7f671bb
feat: remove shift vertices button
merydian Jan 18, 2024
d57436d
feat: make click dist an argument
merydian Jan 18, 2024
e9f027d
fix: error when pressing clear button without linetool initiated
merydian Jan 18, 2024
103586b
style: rename method that creates vertices
merydian Jan 18, 2024
973c340
style: run ruff
merydian Jan 18, 2024
770325f
fix: revert changes to size of base dialog
merydian Jan 18, 2024
ece0656
docs: add to changelog
merydian Jan 18, 2024
ec2d828
fix: do not duplicate vertices when dragged
merydian Jan 29, 2024
718480a
feat: set alpha value of RubberBand
merydian Jan 29, 2024
7a3ecbe
style: run ruff
merydian Jan 29, 2024
c1c8b05
Merge branch 'main' into 204-make-vertice-markers-on-map-drag-and-dro…
merydian Jan 29, 2024
dde3c39
feat: change mouse cursor on hover and drag
merydian Jan 29, 2024
d9210ab
style: run ruff
merydian Jan 29, 2024
f4b6a18
fix: reset moved points index after route generation
merydian Jan 29, 2024
ed90d84
feat: add option to toggle live preview
merydian Feb 5, 2024
4c32979
feat: notify User when point not in radius of road and undo changes
merydian Feb 7, 2024
4fd2de5
feat: clear annotations and list when initiating linetool
merydian Feb 7, 2024
25c0d02
fix: handle api errors better
merydian Feb 7, 2024
6182ef3
fix: error when not having set an api key
merydian Feb 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ RELEASING:
14. Create new release in GitHub with tag version and release title of `vX.X.X`
-->

# Unreleased
- Make vertex marker on map drag and droppable, add live preview ([#204](https://github.com/GIScience/orstools-qgis-plugin/issues/204))

## [1.7.1] - 2024-01-15

Expand Down
1 change: 1 addition & 0 deletions ORStools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def classFactory(iface): # pylint: disable=invalid-name
# Define plugin wide constants
PLUGIN_NAME = "ORS Tools"
DEFAULT_COLOR = "#a8b1f5"
ROUTE_COLOR = "#c62828"
BASE_DIR = os.path.dirname(os.path.abspath(__file__))

RESOURCE_PREFIX = ":plugins/ORStools/img/"
Expand Down
Loading
Loading