From 30436807156f2656c9bc4a05a4e607cb173001ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonia=20P=C3=A9rez-Cerezo?= Date: Fri, 13 Sep 2024 22:45:41 +0200 Subject: [PATCH] Normal indentation in README --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8be3fae..8e6e136 100644 --- a/README.md +++ b/README.md @@ -49,18 +49,18 @@ The metadata for the layers to be rendered is given by the `layers.json` file in the input directory. An example layers.json file is given below: -``` +```json { - "name" : "My map", - "tilelayer" : { - "attribution" : "Map data © OpenStreetMap contributors", - "url_template" : "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" - }, - "layers": { - "tram": {"color": "red", "width": 1.5, "humanname": "Tram"}, - "train": {"color": "blue", "width": 2, "humanname": "Train"} - }, - "maxZoom": 12 + "name" : "My map", + "tilelayer" : { + "attribution" : "Map data © OpenStreetMap contributors", + "url_template" : "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png" + }, + "layers": { + "tram": {"color": "red", "width": 1.5, "humanname": "Tram"}, + "train": {"color": "blue", "width": 2, "humanname": "Train"} + }, + "maxZoom": 12 } ```