mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Merge pull request #7869 from jbudz/max-zoom-4.5
[backport] PR #7866 to 4.5
This commit is contained in:
commit
e268ac8ff4
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ dashboards. Kibana creates a new index if the index doesn’t already exist.
|
|||
service that Kibana uses to display map tiles in tilemap visualizations.
|
||||
added[4.5.3]
|
||||
`tilemap.options.minZoom:`:: *Default: 1* The minimum zoom level. added[4.5.3]
|
||||
`tilemap.options.maxZoom:`:: *Default: 7* The maximum zoom level. added[4.5.3]
|
||||
`tilemap.options.maxZoom:`:: *Default: 10* The maximum zoom level. added[4.5.3]
|
||||
`tilemap.options.attribution:`:: *Default: `"© [Elastic Tile Service](https://www.elastic.co/elastic-tile-service)"`* The map attribution string. added[4.5.3]
|
||||
`tilemap.options.subdomains:`:: An array of subdomains used by the tile service.
|
||||
Specify the position of the subdomain the URL with the token `{s}`.added[4.5.3]
|
||||
|
|
|
@ -32,7 +32,7 @@ window.__KBN__ = {
|
|||
url: 'https://tiles.elastic.co/v1/default/{z}/{x}/{y}.png?my_app_name=kibana&my_app_version=1.2.3&elastic_tile_service_tos=agree',
|
||||
options: {
|
||||
minZoom: 1,
|
||||
maxZoom: 7,
|
||||
maxZoom: 10,
|
||||
attribution: '© [Elastic Tile Service](https://www.elastic.co/elastic_tile_service)'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -119,7 +119,7 @@ module.exports = () => Joi.object({
|
|||
options: Joi.object({
|
||||
attribution: Joi.string().default('© [Elastic Tile Service](https://www.elastic.co/elastic-tile-service)'),
|
||||
minZoom: Joi.number().min(1, 'Must not be less than 1').default(1),
|
||||
maxZoom: Joi.number().default(7),
|
||||
maxZoom: Joi.number().default(10),
|
||||
tileSize: Joi.number(),
|
||||
subdomains: Joi.array().items(Joi.string()).single(),
|
||||
errorTileUrl: Joi.string().uri(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue