Skip to content

Commit

Permalink
fix: Change default back to OSM
Browse files Browse the repository at this point in the history
Stamen's free unauthenticated tile servers are no longer available.
  • Loading branch information
manthey committed Oct 9, 2023
1 parent a5e6f9a commit 530cc03
Show file tree
Hide file tree
Showing 13 changed files with 2,592 additions and 2,053 deletions.
4 changes: 2 additions & 2 deletions examples/flights/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ map = geo.map({

// Add the default osm layer
map.createLayer('osm', {
source: query.map !== 'light' ? 'stamen-toner-lite' : 'osm',
opacity: query.map !== 'light' ? 0.25 : 1
source: query.map === 'dark' ? 'stamen-toner-lite' : 'osm',
opacity: query.map === 'dark' ? 0.25 : 1
});

if (query.map !== 'light') {
Expand Down
2 changes: 1 addition & 1 deletion examples/geoJSON/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $(function () {
});

// Add the osm layer with a custom tile url
map.createLayer('osm', {source: 'stamen-toner-lite'});
map.createLayer('osm', {source: 'osm'});

// Create a layer to put the features in. We could need point, line, and
// polygon features, so ask for a layer that supports all of them.
Expand Down
2 changes: 1 addition & 1 deletion examples/measure/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ block append mainContent
button#show(title='Show the control panel') Show
.form-group
label(for='basemap') Base map
select#basemap(param-name='basemap', placeholder='stamen-toner-lite')
select#basemap(param-name='basemap', placeholder='osm')
option(value='custom') Custom
button#hide(title='Hide the control panel') Hide
input#mapurl.hidden(param-name='mapurl')
Expand Down
2 changes: 1 addition & 1 deletion examples/measure/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ for (const option in options) {
var map, mapLayer, layer, fromButtonSelect, fromGeojsonUpdate;

// Set controls based on query parameters
$('#basemap').val(query.basemap || 'stamen-toner-lite');
$('#basemap').val(query.basemap || 'osm');
$('#mapurl').val(query.mapurl || '');
$('#mapurl').toggleClass('hidden', $('#basemap').val() !== 'custom');
$('#distunit').val(query.distunit || 'decmiles');
Expand Down
8 changes: 2 additions & 6 deletions examples/osm/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ $(function () {
map.createLayer(
'osm',
{
url: 'http://tile.stamen.com/toner-lite/{z}/{x}/{y}.png',
attribution: ['Map tiles by <a href="http://stamen.com">Stamen Design</a>,',
'under <a href="https://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>.',
'Data by <a href="https://openstreetmap.org">OpenStreetMap</a>, under',
'<a href="https://openstreetmap.org/copyright">ODbL</a>.'
].join(' ')
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}',
attribution: 'Tile data from <a href="https://basemap.nationalmap.gov/">USGS</a>'
}
);
});
2 changes: 1 addition & 1 deletion examples/reprojection/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ block append mainContent
.form-group(title="The url used to fetch tiles. Use {x}, {y}, {z}, and {s} for templating. Example: https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png")
label(for="layer-url") Tile URL
select#layer-url.layerparam(param-name="url", list="url-list")
option(value="stamen-toner-lite") Stamen Toner Lite
option(value="osm") OSM
option(value="stamen-toner-lite") Stamen Toner Lite
option(value="../../data/tilefancy.png") Fancy Test Tile
.form-group(title="Web maps are most often rendered using a Mercator geographic coordinate system, but other projections can be used. See spatialreference.org for more information on projections.")
label(for="map-gcs") Map GCS
Expand Down
2 changes: 1 addition & 1 deletion examples/tiles/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ block append mainContent
label(for="layer-url") Tile URL
input#layer-url.layerparam(param-name="url", list="url-list")
datalist#url-list
option(value="stamen-toner-lite") Stamen Toner Lite
option(value="osm") OSM
option(value="stamen-toner-lite") Stamen Toner Lite
option(value="../../data/tilefancy.png") Fancy Test Tile
.form-group(title="The subdomains used to fetch tiles. This can be a comma-separated list or a string of single-letter subdomains.")
label(for="layer-subdomains") URL Subdomains
Expand Down
Loading

0 comments on commit 530cc03

Please sign in to comment.