From aaf8092965aae5d86b0f03b2fd95c5083b676212 Mon Sep 17 00:00:00 2001 From: vladimir Date: Fri, 19 Jul 2019 13:17:47 -0400 Subject: [PATCH] [Heremaps] Add missing "noWrap" parameter in map options (#36994) * Add missing "noWrap" parameter to here map options parameter. * Fix property description. --- types/heremaps/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/heremaps/index.d.ts b/types/heremaps/index.d.ts index 98986df654..55390977ff 100644 --- a/types/heremaps/index.d.ts +++ b/types/heremaps/index.d.ts @@ -3,6 +3,7 @@ // Definitions by: Joshua Efiong // Bernd Hacker // Ferdinand Armbruster +// Vladimir Dashukevich // 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; } }