From b8682f936ab1cb217540b3c502eb155747d32ee8 Mon Sep 17 00:00:00 2001 From: demet Date: Mon, 22 Jul 2024 12:14:37 -0700 Subject: [PATCH] updated formatting --- content/map-parameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/map-parameters.md b/content/map-parameters.md index c354da7..df48223 100644 --- a/content/map-parameters.md +++ b/content/map-parameters.md @@ -50,7 +50,7 @@ var OpenStreetMap_BZH = L.tileLayer('https://tile.openstreetmap.bzh/br/{z}/{x}/{ ## Configure the Starting View In the mymap variable you can see a couple of recognizable elements - most noticeably the latitude and longitude coordinate pair (49.2827, -123.1207). That location is the geographic center point for the city of Vancouver. When your browser loads the map, it starts with that point in the center of your screen. -Say we want to load the map over UBC, which is about 5 km to the west. We'd need to change that coordinate pair to be the center point of UBC. There are several ways to find this, but an easy one is to use [latlong.net](https://www.latlong.net/). Type in UBC in latlong.net, and you return a coordinate pair of 49.260605 and -123.245995. +Say we want to load the map over UBC, which is about 5 km to the west. We'd need to change that coordinate pair to be the center point of UBC. There are several ways to find this, but an easy one is to use [latlong.net](https://www.latlong.net/). Type in UBC in latlong.net, and you return a coordinate pair of (49.260605,-123.245995). To Do