File tree Expand file tree Collapse file tree 3 files changed +24
-11
lines changed Expand file tree Collapse file tree 3 files changed +24
-11
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ Visualizations of coverage and performance analysis for Community Cellular Netwo
4
4
5
5
Now hosted on https://coverage.seattlecommunitynetwork.org/
6
6
7
+ # Testing & Deployment
8
+
9
+ Changes to the main branch are automically built and deployed to: https://seattlecommunitynetwork.org/ccn-coverage-vis/
10
+
11
+ Once changes have been validated, they can be deployed with:
12
+
13
+ ```
14
+ ssh coverage-api.westus2.cloudapp.azure.com
15
+ cd ccn-coverage-vis/
16
+ git switch main
17
+ git stash
18
+ git pull
19
+ npm install
20
+ ```
21
+
22
+
7
23
# Issues
8
24
9
25
- Chart doesn't show tooltips.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ import axios from 'axios';
16
16
import { GeoSearchControl , OpenStreetMapProvider } from 'leaflet-geosearch' ;
17
17
import 'leaflet-geosearch/dist/geosearch.css' ;
18
18
19
- const ATTRIBUTION =
20
- 'Map tiles by <a href="http ://stamen .com">Stamen Design </a>, ' +
21
- 'under <a href="http ://creativecommons.org/licenses/by/3.0">CC BY 3.0 </a>. ' +
22
- 'Data by <a href="http ://openstreetmap .org">OpenStreetMap </a>, ' +
23
- 'under <a href="http ://www.openstreetmap.org/copyright">ODbL </a>. ' ;
19
+ // Updated with details from: https://stadiamaps.com/stamen/onboarding/migrate/
20
+ const ATTRIBUTION = '© <a href="https ://stadiamaps .com/" target="_blank">Stadia Maps </a> ' +
21
+ '© <a href="https ://www.stamen.com/" target="_blank">Stamen Design </a> ' +
22
+ '© <a href="https ://openmaptiles .org/" target="_blank">OpenMapTiles </a> ' +
23
+ '© <a href="https ://www.openstreetmap.org/about/" target="_blank">OpenStreetMap contributors </a>' ;
24
24
25
- const URL = `https://stamen- tiles-{s}.a.ssl.fastly.net/toner-lite /{z}/{x}/{y}${
26
- devicePixelRatio > 1 ? '@2x' : ''
27
- } .png`;
25
+ const URL = `https://tiles.stadiamaps.com/tiles/stamen_toner_lite /{z}/{x}/{y}${
26
+ devicePixelRatio > 1 ? '@2x' : ''
27
+ } .png`;
28
28
29
29
const BIN_SIZE_SHIFT = 0 ;
30
30
const DEFAULT_ZOOM = 10 ;
You can’t perform that action at this time.
0 commit comments