From 13147e0b824b3bfec0371a55f22fc77edef10469 Mon Sep 17 00:00:00 2001
From: Olivier Guyot
Date: Thu, 26 Sep 2019 20:19:11 +0200
Subject: [PATCH] Add experimental tags to a few examples & added doc in the
README
Plus some typos.
---
examples/readme.md | 1 +
examples/semi-transparent-layer.html | 4 ++--
examples/webgl-points-layer.html | 1 +
examples/worker.html | 3 ++-
4 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/examples/readme.md b/examples/readme.md
index 9a1b4c49e9..37da8938c4 100644
--- a/examples/readme.md
+++ b/examples/readme.md
@@ -8,3 +8,4 @@ The `.html` files in this folder are built by applying the templates in the `tem
* docs: Documentation of the example. Can be markdown.
* tags: Tags for the example index
* resources: Additional js or css resources required by the example. This is a YAML list of URLs.
+* experimental: if true, a warning will appear on the example page mentioning the fact that it uses features not part of the API.
diff --git a/examples/semi-transparent-layer.html b/examples/semi-transparent-layer.html
index e56b772cfe..c34401d955 100644
--- a/examples/semi-transparent-layer.html
+++ b/examples/semi-transparent-layer.html
@@ -3,8 +3,8 @@ layout: example.html
title: Semi-Transparent Layer
shortdesc: Example of a map with a semi-transparent layer.
docs: >
- This example will display a tiled MaxBox layer semi-transparently over an OSM background. The OSM layer is changed to back and white by using a CSS filter.
-tags: "transparent, osm, tilejson"
+ This example will display a tiled MaxBox layer semi-transparently over an OSM background. The OSM layer is changed to black and white by using a CSS filter.
+tags: "transparent, osm, tilejson, css"
cloak:
- key: pk.eyJ1IjoiYWhvY2V2YXIiLCJhIjoiY2pzbmg0Nmk5MGF5NzQzbzRnbDNoeHJrbiJ9.7_-_gL8ur7ZtEiNwRfCy7Q
value: Your Mapbox access token from https://mapbox.com/ here
diff --git a/examples/webgl-points-layer.html b/examples/webgl-points-layer.html
index f6d692341e..ebf30b754c 100644
--- a/examples/webgl-points-layer.html
+++ b/examples/webgl-points-layer.html
@@ -18,6 +18,7 @@ docs: >
tags: "webgl, point, layer, feature"
+experimental: true
---
diff --git a/examples/worker.html b/examples/worker.html
index cc794a6a94..ec7d31df0f 100644
--- a/examples/worker.html
+++ b/examples/worker.html
@@ -3,8 +3,9 @@ layout: example.html
title: Worker
shortdesc: This example should be deleted.
docs: >
- When you move the map, a message is sent to a worker. In response, the woker sends a
+ When you move the map, a message is sent to a worker. In response, the worker sends a
message back with the version identifier.
tags: "worker"
+experimental: true
---