Skip to content

Commit b11cf04

Browse files
Merge pull request #30 from geoadmin/feat-PB-1810-rework-explore-data
PB-1810 Change page titles in "Explore Data"
2 parents a637639 + 4e988f5 commit b11cf04

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

.vitepress/config.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ function loadReleasesSidebarData() {
112112

113113
function exploreDataItems(): DefaultTheme.SidebarItem[] {
114114
return [
115-
{ text: "Layers Metadata", link: "/docs/layers-metadata" },
116-
{ text: "Layers Attributes", link: "/docs/layers-attributes" },
117-
{ text: "Legend Resource", link: "/docs/legend-resource" },
115+
{ text: "Get Layer Metadata", link: "/docs/get-layer-metadata" },
116+
{ text: "Get Layer Attributes", link: "/docs/get-layer-attributes" },
117+
{ text: "Get Layer Legend", link: "/docs/get-layer-legend" },
118118
];
119119
}
120120

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Layers Attributes
1+
# Get Layer Attributes
22

33
The endpoint returns attribute metadata for a specified layer. Use this endpoint if you want to list all available attributes of a layer or if you need details about a particular attribute. The endpoint is also useful for querying the [Find endpoint](/docs/find-features).
44

55
<ApiCodeBlock url="https://api3.geo.admin.ch/rest/services/api/MapServer/{layerBodId}" method="GET" />
66

77
## Request Details
88

9-
To interact with the Layers Attributes service, you need to provide specific parameters in your request.
9+
To interact with the Layer Attributes service, you need to provide specific parameters in your request.
1010
These parameters are divided into **Path Parameters**, which are required and part of the URL, and **Query Parameters**, which are optional and modify the behavior of the request.
1111

1212
### Path Parameters
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Legend Resource
1+
# Get Layer Legend
22

33
With a layer ID (or technical name), this service can be used to
44
retrieve a legend.
@@ -7,7 +7,7 @@ retrieve a legend.
77

88
## Request Details
99

10-
To interact with the Layers Attributes service, you need to provide specific parameters in your request.
10+
To interact with the Layer Legend service, you need to provide specific parameters in your request.
1111
These parameters are divided into **Path Parameters**, which are required and part of the URL, and **Query Parameters**, which are optional and modify the behavior of the request.
1212

1313
### Path Parameters
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Layers Metadata
1+
# Get Layer Metadata
22

33
This service provides metadata for all the available layers in the
44
GeoAdmin API.
@@ -7,7 +7,7 @@ GeoAdmin API.
77

88
## Request Details
99

10-
To interact with the Layers Attributes service, you need to provide specific parameters in your request.
10+
To interact with the Layer Metadata service, you need to provide specific parameters in your request.
1111
This endpoint only has **Query Parameters**, which are optional and modify the behavior of the request.
1212

1313
### Query Parameters
@@ -21,7 +21,7 @@ This endpoint only has **Query Parameters**, which are optional and modify the b
2121

2222
## Response Details
2323

24-
A request to the Layers Metadata service returns a **JSON** composed by a list of object literals representing the **layers** and a set of metadata **attributes** associated to each layer.
24+
A request to the Layer Metadata service returns a **JSON** composed by a list of object literals representing the **layers** and a set of metadata **attributes** associated to each layer.
2525

2626
Here is a description of the data one can find in the above response.
2727

docs/identify-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following table summarize the various combinations:
4444

4545
### layerDefs syntax
4646

47-
To list the available attributes together with their types and examples values, use the layer [attribute service](/docs/layers-attributes).
47+
To list the available attributes together with their types and examples values, use the layer [attribute service](/docs/get-layer-attributes).
4848

4949
Define the `layerDefs` parameter in JSON format like `{"<layername>":"<filter_expression>"}`.
5050

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Discover how to access geospatial data provided by the Swiss Confederation throu
44

55
We provide tutorials on how to interact with these services:
66

7-
- [Explore Data](/docs/layers-metadata): Browse additional information about layers, including attributes and other metadata.
7+
- [Explore Data](/docs/get-layer-metadata): Browse additional information about layers, including attributes and other metadata.
88
- [Access Data](/docs/identify-features): Retrieve location-based features such as geometries, addresses and elevation.
99
- [Visualize Data](/docs/wmts): Access map data (2D and 3D) for visualization in your application.
1010
- [Download Data](/docs/stac/overview): Download entire datasets for exploration and analysis.

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ hero:
1919
features:
2020
- title: Explore Data
2121
details: Browse additional information about layers, including attributes and other metadata.
22-
link: /docs/layers-metadata
22+
link: /docs/get-layer-metadata
2323
icon: ℹ️
2424
- title: Access Data
2525
details: Retrieve location-based features such as geometries, addresses and elevation.

0 commit comments

Comments
 (0)