- Kibana Guide: other versions:
- Introduction
- Set Up Kibana
- Getting Started
- Discover
- Visualize
- Dashboard
- Timelion
- Canvas
- Graphing connections in your data
- Machine learning
- Maps
- Infrastructure
- Logs
- APM
- Uptime
- Dev Tools
- Monitoring
- Management
- Reporting from Kibana
- REST API
- Kibana Plugins
- Limitations
- Release Highlights
- Breaking changes
- Release notes
- Kibana 6.8.23
- Kibana 6.8.22
- Kibana 6.8.21
- Kibana 6.8.20
- Kibana 6.8.19
- Kibana 6.8.18
- Kibana 6.8.17
- Kibana 6.8.16
- Kibana 6.8.15
- Kibana 6.8.14
- Kibana 6.8.13
- Kibana 6.8.12
- Kibana 6.8.11
- Kibana 6.8.10
- Kibana 6.8.9
- Kibana 6.8.8
- Kibana 6.8.7
- Kibana 6.8.6
- Kibana 6.8.5
- Kibana 6.8.4
- Kibana 6.8.3
- Kibana 6.8.2
- Kibana 6.8.1
- Kibana 6.8.0
- Kibana 6.7.2
- Kibana 6.7.1
- Kibana 6.7.0
- Kibana 6.6.2
- Kibana 6.6.1
- Kibana 6.6.0
- Kibana 6.5.4
- Kibana 6.5.3
- Kibana 6.5.2
- Kibana 6.5.1
- Kibana 6.5.0
- Kibana 6.4.3
- Kibana 6.4.2
- Kibana 6.4.1
- Kibana 6.4.0
- Kibana 6.3.2
- Kibana 6.3.1
- Kibana 6.3.0
- Kibana 6.2.4
- Kibana 6.2.3
- Kibana 6.2.2
- Kibana 6.2.1
- Kibana 6.2.0
- Kibana 6.1.4
- Kibana 6.1.3
- Kibana 6.1.2
- Kibana 6.1.1
- Kibana 6.1.0
- Kibana 6.0.1
- Kibana 6.0.0
- Kibana 6.0.0-rc2
- Kibana 6.0.0-rc1
- Kibana 6.0.0-beta2
- Kibana 6.0.0-beta1
- Kibana 6.0.0-alpha2
- Kibana 6.0.0-alpha1
- Developer guide
NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Vega with a Map
editVega with a Map
editKibana’s default map can be used as a base of the Vega graph. To enable,
the graph must specify type=map
in the host configuration:
{ "config": { "kibana": { "type": "map", // Initial map position "latitude": 40.7, // default 0 "longitude": -74, // default 0 "zoom": 7, // default 2 // defaults to "default". Use false to disable base layer. "mapStyle": false, // default 0 "minZoom": 5, // defaults to the maximum for the given style, // or 25 when base is disabled "maxZoom": 13, // defaults to true, shows +/- buttons to zoom in/out "zoomControl": false, // 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. // Makes the graph slower when moving the map "delayRepaint": true, // default true } }, /* the rest of Vega JSON */ }
This visualization will automatically inject a projection called
"projection"
. Use it to calculate positioning of all geo-aware marks.
Additionally, you may use latitude
, longitude
, and zoom
signals.
These signals can be used in the graph, or can be updated to modify the
positioning of the map.
Was this helpful?
Thank you for your feedback.