From d49a5b11c9abffe322a8aff9c66a7db55f182827 Mon Sep 17 00:00:00 2001 From: Lean Mendoza Date: Wed, 26 Jun 2024 15:27:22 -0300 Subject: [PATCH] fix --- content/ADR-250-minimap-standard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ADR-250-minimap-standard.md b/content/ADR-250-minimap-standard.md index 9581050c..dd95b930 100644 --- a/content/ADR-250-minimap-standard.md +++ b/content/ADR-250-minimap-standard.md @@ -91,7 +91,7 @@ This option is inspired by the current implementation, which the reference clien The endpoint base URL specified in the Realm follows the next schema: ```javascript const { baseUrl, suffixUrl } = realmAbout.minimaps.satelliteView -const imageUrl = `${baseUrl}/${zoom}/${x},${y}${suffixUrl} +const imageUrl = `${baseUrl}/${zoom}/${x},${y}${suffixUrl}` ``` Where the zoom is 1 to N (from far to near), and the `{x},{y}` is the quadrant you want to get. Both `baseUrl` and `suffixUrl` are to give flexibility when hosting this service.