mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
This commit is contained in:
parent
177537a80e
commit
2ea8c33834
3 changed files with 7 additions and 6 deletions
|
@ -215,7 +215,8 @@ the graph must specify `type=map` in the host configuration:
|
|||
// defaults to true, shows +/- buttons to zoom in/out
|
||||
"zoomControl": false,
|
||||
|
||||
// defaults to true, disables mouse wheel zoom
|
||||
// Defaults to 'false', disables mouse wheel zoom. If set to
|
||||
// 'true', map may zoom unexpectedly while scrolling dashboard
|
||||
"scrollWheelZoom": false,
|
||||
|
||||
// When false, repaints on each move frame.
|
||||
|
|
|
@ -172,7 +172,7 @@ describe('VegaParser._parseMapConfig', () => {
|
|||
longitude: 0,
|
||||
mapStyle: 'default',
|
||||
zoomControl: true,
|
||||
scrollWheelZoom: true,
|
||||
scrollWheelZoom: false,
|
||||
}, 0));
|
||||
|
||||
it('filled', test({
|
||||
|
@ -181,7 +181,7 @@ describe('VegaParser._parseMapConfig', () => {
|
|||
longitude: 0,
|
||||
mapStyle: 'default',
|
||||
zoomControl: true,
|
||||
scrollWheelZoom: true,
|
||||
scrollWheelZoom: false,
|
||||
maxBounds: [1, 2, 3, 4],
|
||||
}, {
|
||||
delayRepaint: true,
|
||||
|
@ -189,7 +189,7 @@ describe('VegaParser._parseMapConfig', () => {
|
|||
longitude: 0,
|
||||
mapStyle: 'default',
|
||||
zoomControl: true,
|
||||
scrollWheelZoom: true,
|
||||
scrollWheelZoom: false,
|
||||
maxBounds: [1, 2, 3, 4],
|
||||
}, 0));
|
||||
|
||||
|
@ -208,7 +208,7 @@ describe('VegaParser._parseMapConfig', () => {
|
|||
longitude: 0,
|
||||
mapStyle: 'default',
|
||||
zoomControl: true,
|
||||
scrollWheelZoom: true,
|
||||
scrollWheelZoom: false,
|
||||
}, 5));
|
||||
});
|
||||
|
||||
|
|
|
@ -347,7 +347,7 @@ export class VegaParser {
|
|||
}
|
||||
|
||||
this._parseBool('zoomControl', res, true);
|
||||
this._parseBool('scrollWheelZoom', res, true);
|
||||
this._parseBool('scrollWheelZoom', res, false);
|
||||
|
||||
const maxBounds = this._config.maxBounds;
|
||||
if (maxBounds !== undefined) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue