File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ function Map(props: MapProps): ReactElement {
54
54
return (
55
55
< div >
56
56
< BaseMap ref = { ref } viewport = { viewport } id = "map" className = { styles . map } >
57
- < TileLayer url = "//{s}. tile.openstreetmap.org/{z}/{x}/{y}.png" />
57
+ < TileLayer url = "//tile.openstreetmap.org/{z}/{x}/{y}.png" />
58
58
</ BaseMap >
59
59
</ div >
60
60
) ;
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ A basic working example would look like:
72
72
73
73
const map = L .map (' map' ).setView ([51.505 , - 0.09 ], 13 );
74
74
75
- L .tileLayer (' //{s}. tile.openstreetmap.org/{z}/{x}/{y}.png' ).addTo (map);
75
+ L .tileLayer (' //tile.openstreetmap.org/{z}/{x}/{y}.png' ).addTo (map);
76
76
77
77
const search = new GeoSearch.GeoSearchControl ({
78
78
provider: new GeoSearch.OpenStreetMapProvider (),
You can’t perform that action at this time.
0 commit comments