-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge upstream/main renaming of principal repo
Add spearfish.pmtiles data file to test infrastructure Add test dependency on serve-static so that test server supports byte range request, a requirement of protomaps-leaflet Add aliased version of pmtilesRules.js to test infrastructure so that tests and dev code are not mixed up
- Loading branch information
1 parent
082db4f
commit 0603cc8
Showing
8 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const pmtilesRules = new Map(); | ||
pmtilesRules.set('http://localhost:30001/spearfish.pmtiles?theme=dark', { | ||
theme: { theme: 'dark' } | ||
}); | ||
pmtilesRules.set( | ||
'http://localhost:30001/tiles/osmtile/{beans}/{foo}/{bar}.mvt?theme=light', | ||
{ theme: { theme: 'light' } } | ||
); | ||
export { pmtilesRules }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters