forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Map API functions such as easeTo and flyTo now support padding: Paddi…
…ngOptions which lets developers shift the center of perspective for a map when building floating sidebars. Asymmetric viewport (mapbox#8638) Co-authored-by: Vladimir Agafonkin <[email protected]>
- Loading branch information
1 parent
3f25578
commit 348b948
Showing
21 changed files
with
1,114 additions
and
36 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,102 @@ | ||
// @flow | ||
import {number} from "../style-spec/util/interpolate"; | ||
import Point from "@mapbox/point-geometry"; | ||
import {clamp} from "../util/util"; | ||
|
||
/** | ||
* An `EdgeInset` object represents screen space padding applied to the edges of the viewport. | ||
* This shifts the apprent center or the vanishing point of the map. This is useful for adding floating UI elements | ||
* on top of the map and having the vanishing point shift as UI elements resize. | ||
* | ||
* @param {number} [top=0] | ||
* @param {number} [bottom=0] | ||
* @param {number} [left=0] | ||
* @param {number} [right=0] | ||
*/ | ||
class EdgeInsets { | ||
top: number; | ||
bottom: number; | ||
left: number; | ||
right: number; | ||
|
||
constructor(top: number = 0, bottom: number = 0, left: number = 0, right: number = 0) { | ||
if (isNaN(top) || top < 0 || | ||
isNaN(bottom) || bottom < 0 || | ||
isNaN(left) || left < 0 || | ||
isNaN(right) || right < 0 | ||
) { | ||
throw new Error('Invalid value for edge-insets, top, bottom, left and right must all be numbers'); | ||
} | ||
|
||
this.top = top; | ||
this.bottom = bottom; | ||
this.left = left; | ||
this.right = right; | ||
} | ||
|
||
/** | ||
* Interpolates the inset in-place. | ||
* This maintains the current inset value for any inset not present in `target`. | ||
* | ||
* @param {PaddingOptions} target | ||
* @param {number} t | ||
* @returns {EdgeInsets} | ||
* @memberof EdgeInsets | ||
*/ | ||
interpolate(start: PaddingOptions | EdgeInsets, target: PaddingOptions, t: number): EdgeInsets { | ||
if (target.top != null && start.top != null) this.top = number(start.top, target.top, t); | ||
if (target.bottom != null && start.bottom != null) this.bottom = number(start.bottom, target.bottom, t); | ||
if (target.left != null && start.left != null) this.left = number(start.left, target.left, t); | ||
if (target.right != null && start.right != null) this.right = number(start.right, target.right, t); | ||
|
||
return this; | ||
} | ||
|
||
/** | ||
* Utility method that computes the new apprent center or vanishing point after applying insets. | ||
* This is in pixels and with the top left being (0.0) and +y being downwards. | ||
* | ||
* @param {number} width | ||
* @param {number} height | ||
* @returns {Point} | ||
* @memberof EdgeInsets | ||
*/ | ||
getCenter(width: number, height: number): Point { | ||
// Clamp insets so they never overflow width/height and always calculate a valid center | ||
const x = clamp((this.left + width - this.right) / 2, 0, width); | ||
const y = clamp((this.top + height - this.bottom) / 2, 0, height); | ||
|
||
return new Point(x, y); | ||
} | ||
|
||
equals(other: PaddingOptions): boolean { | ||
return this.top === other.top && | ||
this.bottom === other.bottom && | ||
this.left === other.left && | ||
this.right === other.right; | ||
} | ||
|
||
clone(): EdgeInsets { | ||
return new EdgeInsets(this.top, this.bottom, this.left, this.right); | ||
} | ||
|
||
/** | ||
* Returns the current sdtate as json, useful when you want to have a | ||
* read-only representation of the inset. | ||
* | ||
* @returns {PaddingOptions} | ||
* @memberof EdgeInsets | ||
*/ | ||
toJSON(): PaddingOptions { | ||
return { | ||
top: this.top, | ||
bottom: this.bottom, | ||
left: this.left, | ||
right: this.right | ||
}; | ||
} | ||
} | ||
|
||
export type PaddingOptions = {top: ?number, bottom: ?number, right: ?number, left: ?number}; | ||
|
||
export default EdgeInsets; |
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
Oops, something went wrong.