-
Notifications
You must be signed in to change notification settings - Fork 197
HARP-13493: Make maxZoomLevel value in technique non inclusive #2016
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -264,7 +264,7 @@ export interface BaseTechniqueParams { | |
minZoomLevel?: DynamicProperty<number>; | ||
|
||
/** | ||
* Maximum zoom level. If the current zoom level is larger, the technique will not be used. | ||
* Maximum zoom level. If the current zoom level is equal to or greater, the technique will not be used. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You may want to check with our Design team before going forward with this change of semantics. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, shouldn't you update the semantics of all the zoom/data level constraints? e.g. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As agreed for the time being we leave the semantic of those properties as-is, both edges inclusive. |
||
*/ | ||
maxZoomLevel?: DynamicProperty<number>; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to document this change in BaseTechniqueParams in @here/harp-datasource-protocol/lib/TechniqueParams.ts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done