From 20e65191dcde3655ff30b085f81466f1044261df Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sun, 20 Oct 2024 20:56:15 +0200 Subject: [PATCH] reworded parts of the docs --- docs/src/sources-sprites.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/src/sources-sprites.md b/docs/src/sources-sprites.md index f1628b13c..c7689b053 100644 --- a/docs/src/sources-sprites.md +++ b/docs/src/sources-sprites.md @@ -41,14 +41,15 @@ the PNG, there is a high DPI version available at `/sprite/@2x.json`. } ``` -##### Coloring at runtime via Sprite Signed Distance Fields (SDFs) +##### Coloring at runtime via Signed Distance Fields (SDFs) -If you want to set the color of a sprite at runtime, you will need use the [Signed Distance Fields (SDFs)](https://steamcdn-a.akamaihd.net/apps/valve/2007/SIGGRAPH2007_AlphaTestedMagnification.pdf)-endpoints instead. -For example, maplibre does support the image being modified via the [`icon-color`](https://maplibre.org/maplibre-style-spec/layers/#icon-color) and [`icon-halo-color`](https://maplibre.org/maplibre-style-spec/layers/#icon-halo-color) properties. -SDFs have the significant downside of only allowing one color and are thus not the default. -If you want multiple colors, you will need to layer icons. +If you want to set the color of a sprite at runtime, you will need use the [Signed Distance Fields (SDFs)](https://steamcdn-a.akamaihd.net/apps/valve/2007/SIGGRAPH2007_AlphaTestedMagnification.pdf)-endpoints. +For example, maplibre does support the image being modified via the [`icon-color`](https://maplibre.org/maplibre-style-spec/layers/#icon-color) and [`icon-halo-color`](https://maplibre.org/maplibre-style-spec/layers/#icon-halo-color) properties if using SDFs. -The following to APIs are available: +SDFs have the significant **downside of only allowing one color**. +If you want multiple colors, you will need to layer icons on top of each other. + +The following APIs are available: - `/sprite/sdf/.json` for getting a sprite index as SDF and - `/sprite/sdf/.png` for getting sprite PNGs as SDF