From 53d925a8abac3690680633c4ad3eefe3c1b3258c Mon Sep 17 00:00:00 2001 From: Colton Loftus <70598503+C-Loftus@users.noreply.github.com> Date: Mon, 5 Jan 2026 05:31:10 +0000 Subject: [PATCH] docs: Add Documentation on the Map Projection / CRS (#2324) --- ratatui-widgets/src/canvas/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ratatui-widgets/src/canvas/map.rs b/ratatui-widgets/src/canvas/map.rs index ae086461..713bb2c8 100644 --- a/ratatui-widgets/src/canvas/map.rs +++ b/ratatui-widgets/src/canvas/map.rs @@ -31,7 +31,7 @@ impl MapResolution { } } -/// A world map +/// A world map. It represents the world using the [EPSG:4326 coordinate reference system](https://en.wikipedia.org/wiki/EPSG_Geodetic_Parameter_Dataset). /// /// A world map can be rendered with different [resolutions](MapResolution) and [colors](Color). #[derive(Debug, Default, Clone, Eq, PartialEq, Hash)]