Skip to content

Commit

Permalink
fixing broken examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mwheels committed May 22, 2022
1 parent d429c13 commit ecca961
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/example_0.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(function() {
// Setup leaflet map
var map = new L.Map('map');

var basemapLayer = new L.TileLayer('http://{s}.tiles.mapbox.com/v3/github.map-xgq2svrz/{z}/{x}/{y}.png');
var basemapLayer = new L.TileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png');

// Center map and default zoom level
map.setView([44.61131534, -123.4726739], 9);
Expand Down
2 changes: 1 addition & 1 deletion examples/example_1.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $(function() {
// Setup leaflet map
var map = new L.Map('map');

var basemapLayer = new L.TileLayer('http://{s}.tiles.mapbox.com/v3/github.map-xgq2svrz/{z}/{x}/{y}.png');
var basemapLayer = new L.TileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png');

// Center map and default zoom level
map.setView([44.5, -123.6], 10);
Expand Down
2 changes: 1 addition & 1 deletion examples/example_2.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(function() {
// Setup leaflet map
var map = new L.Map('map');

var basemapLayer = new L.TileLayer('http://{s}.tiles.mapbox.com/v3/github.map-xgq2svrz/{z}/{x}/{y}.png');
var basemapLayer = new L.TileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png');

// Center map and default zoom level
map.setView([44.61131534, -123.4726739], 9);
Expand Down
2 changes: 1 addition & 1 deletion examples/example_3.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(function() {
// Setup leaflet map
var map = new L.Map('map');

var basemapLayer = new L.TileLayer('http://{s}.tiles.mapbox.com/v3/github.map-xgq2svrz/{z}/{x}/{y}.png');
var basemapLayer = new L.TileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png');

// Center map and default zoom level
map.setView([44.61131534, -123.4726739], 9);
Expand Down
2 changes: 1 addition & 1 deletion examples/example_4.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $(function() {
// Setup leaflet map
var map = new L.Map('map');

var basemapLayer = new L.TileLayer('http://{s}.tiles.mapbox.com/v3/github.map-xgq2svrz/{z}/{x}/{y}.png');
var basemapLayer = new L.TileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png');

// Center map and default zoom level
map.setView([44.562108, -123.265806], 14);
Expand Down

0 comments on commit ecca961

Please sign in to comment.