Geomap: Base layer server configuration (#37041)

This commit is contained in:
Eunice Kim
2021-07-21 08:54:05 -07:00
committed by GitHub
parent ec9a587cbe
commit 3b0d7fc00b
6 changed files with 59 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import { PanelPluginMeta } from './panel';
import { GrafanaTheme } from './theme';
import { SystemDateFormatSettings } from '../datetime';
import { GrafanaTheme2 } from '../themes';
import { MapLayerOptions } from '../geo/layer';
/**
* Describes the build information that will be available via the Grafana configuration.
@@ -125,4 +126,6 @@ export interface GrafanaConfig {
dateFormats?: SystemDateFormatSettings;
sentry: SentryConfig;
customTheme?: any;
geomapDefaultBaseLayer?: MapLayerOptions;
geomapDisableCustomBaseLayer?: boolean;
}