Geomap: Move beta layers to GA (#113186)

This commit is contained in:
Drew Slobodnjak
2025-10-30 09:12:04 -07:00
committed by GitHub
parent 7fbe2e5962
commit 1613d2815c
4 changed files with 7 additions and 29 deletions
@@ -218,18 +218,14 @@ There are seven map layer types to choose from in a geomap.
- [Heatmap](#heatmap-layer) visualizes a heatmap of the data.
- [GeoJSON](#geojson-layer) renders static data from a GeoJSON file.
- [Night / Day](#night--day-layer) renders a night / day region.
- [Route (Beta)](#route-layer-beta) render data points as a route.
- [Photos (Beta)](#photos-layer-beta) renders a photo at each data point.
- [Network (Beta)](#network-layer-beta) visualizes a network graph from the data.
- [Route](#route-layer) render data points as a route.
- [Photos](#photos-layer) renders a photo at each data point.
- [Network](#network-layer) visualizes a network graph from the data.
- [Open Street Map](#open-street-map-layer) adds a map from a collaborative free geographic world database.
- [CARTO basemap](#carto-basemap-layer) adds a layer from CARTO Raster basemaps.
- [ArcGIS MapServer](#arcgis-mapserver-layer) adds a layer from an ESRI ArcGIS MapServer.
- [XYZ Tile layer](#xyz-tile-layer) adds a map from a generic tile layer.
{{< admonition type="note" >}}
Beta is equivalent to the [public preview](/docs/release-life-cycle/) release stage.
{{< /admonition >}}
There are also two experimental (or alpha) layer types.
- **Icon at last point (alpha)** renders an icon at the last data point.
@@ -361,11 +357,7 @@ The Night / Day layer displays night and day regions based on the current time r
[Extensions for OpenLayers - DayNight](https://viglino.github.io/ol-ext/examples/layer/map.daynight.html)
#### Route layer (Beta)
{{< admonition type="caution" >}}
The Route layer is currently in [public preview](/docs/release-life-cycle/). Grafana Labs offers limited support, and breaking changes might occur prior to the feature being made generally available.
{{< /admonition >}}
#### Route layer
The Route layer renders data points as a route.
@@ -390,11 +382,7 @@ The layer can also render a route with arrows.
[Extensions for OpenLayers - Flow Line Style](http://viglino.github.io/ol-ext/examples/style/map.style.gpxline.html)
#### Photos layer (Beta)
{{< admonition type="caution" >}}
The Photos layer is currently in [public preview](/docs/release-life-cycle/). Grafana Labs offers limited support, and breaking changes might occur prior to the feature being made generally available.
{{< /admonition >}}
#### Photos layer
The Photos layer renders a photo at each data point.
@@ -417,11 +405,7 @@ The Photos layer renders a photo at each data point.
[Extensions for OpenLayers - Image Photo Style](http://viglino.github.io/ol-ext/examples/style/map.style.photo.html)
#### Network layer (Beta)
{{< admonition type="caution" >}}
The Network layer is currently in [public preview](/docs/release-life-cycle/). Grafana Labs offers limited support, and breaking changes might occur prior to the feature being made generally available.
{{< /admonition >}}
#### Network layer
The Network layer renders a network graph. This layer supports the same [data format supported by the node graph visualization](ref:data-format) with the addition of [geospatial data](#location-mode) included in the nodes data. The geospatial data is used to locate and render the nodes on the map.
@@ -709,7 +693,7 @@ Displays debug information in the upper right corner. This can be useful for deb
#### Tooltip
Tooltips are supported for the **Markers**, **Heatmap**, **Photos** (beta) layers.
Tooltips are supported for the **Markers**, **Heatmap**, **Photos** layers.
For these layer types, choose from the following tooltip options:
- **None** displays tooltips only when a data point is clicked.
@@ -18,7 +18,6 @@ import {
EventBus,
DataFrame,
Field,
PluginState,
} from '@grafana/data';
import { TextDimensionMode } from '@grafana/schema';
import { FrameVectorSource } from 'app/features/geo/utils/frameVectorSource';
@@ -69,7 +68,6 @@ export const networkLayer: MapLayerRegistryItem<NetworkConfig> = {
isBaseMap: false,
showLocation: true,
hideOpacity: true,
state: PluginState.beta,
/**
* Function that configures transformation and returns a transformer
@@ -9,7 +9,6 @@ import {
PanelData,
GrafanaTheme2,
EventBus,
PluginState,
FieldType,
Field,
MapLayerOptions,
@@ -71,7 +70,6 @@ export const photosLayer: MapLayerRegistryItem<PhotoConfig> = {
isBaseMap: false,
showLocation: true,
hideOpacity: true,
state: PluginState.beta,
/**
* Function that configures transformation and returns a transformer
@@ -14,7 +14,6 @@ import {
MapLayerRegistryItem,
PanelData,
GrafanaTheme2,
PluginState,
EventBus,
DataHoverEvent,
DataHoverClearEvent,
@@ -79,7 +78,6 @@ export const routeLayer: MapLayerRegistryItem<RouteConfig> = {
description: 'Render data points as a route',
isBaseMap: false,
showLocation: true,
state: PluginState.beta,
/**
* Function that configures transformation and returns a transformer