From 147d7a1339ac322041bbbff71bebe87f951aec62 Mon Sep 17 00:00:00 2001 From: mapsjs Date: Thu, 17 Oct 2013 11:04:10 -0400 Subject: [PATCH] Added setBackground --- mapsjs/mapsjs.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mapsjs/mapsjs.d.ts b/mapsjs/mapsjs.d.ts index ef921d27c1..f901267709 100644 --- a/mapsjs/mapsjs.d.ts +++ b/mapsjs/mapsjs.d.ts @@ -2611,6 +2611,12 @@ declare module 'mapsjs' { * @param {number} cem The content extent margin in pixels. */ setContentExtentsMarginInPixels(cem: number): void; + + /** + * Sets the background color of the map using a css color string + * @param {number} b- a css color string + */ + setBackground(b: string): void; } }