From d00a8b28ae9992e789b46f128d2cb74b9346fbcf Mon Sep 17 00:00:00 2001 From: Alexandria Quelle <38425426+aquelle-cp@users.noreply.github.com> Date: Thu, 2 Dec 2021 11:32:14 -0800 Subject: [PATCH] Added clarification (#7819) Added a sentence to indicate when the code examples switch from HTML and CSS to JS for clarity --- docs/examples/quick-start/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/quick-start/index.md b/docs/examples/quick-start/index.md index 2b6aeeec2..ce676c9e8 100644 --- a/docs/examples/quick-start/index.md +++ b/docs/examples/quick-start/index.md @@ -42,7 +42,7 @@ Now you're ready to initialize the map and do some stuff with it. {% include frame.html url="example-basic.html" %} -Let's create a map of the center of London with pretty Mapbox Streets tiles. First we'll initialize the map and set its view to our chosen geographical coordinates and a zoom level: +Let's create a map of the center of London with pretty Mapbox Streets tiles. From here on, we'll be working in JS. First we'll initialize the map and set its view to our chosen geographical coordinates and a zoom level: var map = L.map('map').setView([51.505, -0.09], 13);