[Maps] Add readme for Maps plugins (#82023)

This commit is contained in:
Thomas Neirynck 2020-10-29 15:10:18 -04:00 committed by GitHub
parent e0b6b0ba5c
commit fe807d68a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 28 additions and 10 deletions

2
.github/CODEOWNERS vendored
View file

@ -171,8 +171,6 @@
/x-pack/test/functional/apps/maps/ @elastic/kibana-gis
/x-pack/test/functional/es_archives/maps/ @elastic/kibana-gis
/x-pack/test/visual_regression/tests/maps/index.js @elastic/kibana-gis
#CC# /src/legacy/core_plugins/region_map @elastic/kibana-gis
#CC# /src/legacy/core_plugins/tile_map @elastic/kibana-gis
#CC# /src/plugins/maps_legacy/ @elastic/kibana-gis
#CC# /x-pack/plugins/file_upload @elastic/kibana-gis
#CC# /x-pack/plugins/maps_legacy_licensing @elastic/kibana-gis

View file

@ -134,8 +134,8 @@ in Kibana, e.g. visualizations. It has the form of a flyout panel.
|WARNING: Missing README.
|{kib-repo}blob/{branch}/src/plugins/maps_legacy[mapsLegacy]
|WARNING: Missing README.
|{kib-repo}blob/{branch}/src/plugins/maps_legacy/README.md[mapsLegacy]
|Internal objects used by the Coordinate, Region, and Vega visualizations.
|{kib-repo}blob/{branch}/src/plugins/navigation/README.md[navigation]
@ -147,8 +147,8 @@ It also provides a stateful version of it on the start contract.
|WARNING: Missing README.
|{kib-repo}blob/{branch}/src/plugins/region_map[regionMap]
|WARNING: Missing README.
|{kib-repo}blob/{branch}/src/plugins/region_map/README.md[regionMap]
|Create choropleth maps. Display the results of a term-aggregation as e.g. countries, zip-codes, states.
|{kib-repo}blob/{branch}/src/plugins/saved_objects[savedObjects]
@ -180,8 +180,8 @@ so they can properly protect the data within their clusters.
|This plugin adds the Advanced Settings section for the Usage and Security Data collection (aka Telemetry).
|{kib-repo}blob/{branch}/src/plugins/tile_map[tileMap]
|WARNING: Missing README.
|{kib-repo}blob/{branch}/src/plugins/tile_map/README.md[tileMap]
|Create a coordinate map. Display the results of a geohash_tile aggregation as bubbles, rectangles, or heatmap color blobs.
|{kib-repo}blob/{branch}/src/plugins/timelion/README.md[timelion]
@ -355,8 +355,8 @@ and actions.
|WARNING: Missing README.
|{kib-repo}blob/{branch}/x-pack/plugins/file_upload[fileUpload]
|WARNING: Missing README.
|{kib-repo}blob/{branch}/x-pack/plugins/file_upload/README.md[fileUpload]
|Backend and core front-end react-components for GeoJson file upload. Only supports the Maps plugin.
|{kib-repo}blob/{branch}/x-pack/plugins/global_search/README.md[globalSearch]

View file

@ -0,0 +1,7 @@
# Maps legacy
Internal objects used by the Coordinate, Region, and Vega visualizations.
It exports the default Leaflet-based map and exposes the connection to the Elastic Maps service.
This plugin is targeted for removal in 8.0.

View file

@ -0,0 +1,5 @@
# Region map visualization
Create choropleth maps. Display the results of a term-aggregation as e.g. countries, zip-codes, states.
This plugin is targeted for removal in 8.0.

View file

@ -0,0 +1,5 @@
# Coordinate map visualization
Create a coordinate map. Display the results of a geohash_tile aggregation as bubbles, rectangles, or heatmap color blobs.
This plugin is targeted for removal in 8.0.

View file

@ -0,0 +1,3 @@
# File upload
Backend and core front-end react-components for GeoJson file upload. Only supports the Maps plugin.