[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:
vladimir 2019-07-19 13:17:47 -04:00 committed by Andrew Branch
parent 22761c884a
commit aaf8092965

View File

@ -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;
}
}