mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
[Heremaps] Add missing "noWrap" parameter in map options (#36994)
* Add missing "noWrap" parameter to here map options parameter. * Fix property description.
This commit is contained in:
parent
22761c884a
commit
aaf8092965
3
types/heremaps/index.d.ts
vendored
3
types/heremaps/index.d.ts
vendored
@ -3,6 +3,7 @@
|
||||
// Definitions by: Joshua Efiong <https://github.com/Josh-ES>
|
||||
// Bernd Hacker <https://github.com/denyo>
|
||||
// Ferdinand Armbruster <https://github.com/fx88>
|
||||
// Vladimir Dashukevich <https://github.com/life777>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.1
|
||||
|
||||
@ -309,6 +310,7 @@ declare namespace H {
|
||||
* @property margin {number=} - The size in pixel of the supplemental area to render for each side of the map
|
||||
* @property padding {H.map.ViewPort.Padding=} - The padding in pixels for each side of the map
|
||||
* @property fixedCenter {boolean=} - Indicates whether the center of the map should remain unchanged if the viewport's size or padding has been changed, default is true
|
||||
* @property noWrap {boolean=} - Indicates whether to wrap the world on longitude axes. When set to true, only one world will be rendered. Default is false, multiple worlds are rendered.
|
||||
*/
|
||||
interface Options {
|
||||
center?: H.geo.IPoint;
|
||||
@ -323,6 +325,7 @@ declare namespace H {
|
||||
margin?: number;
|
||||
padding?: H.map.ViewPort.Padding;
|
||||
fixedCenter?: boolean;
|
||||
noWrap?: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user