-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* prepare for globe mode and SDK v3 (#4) * RD-453_telemetry (#5) * prepare for globe mode and SDK v3 * Add telemetry * Simplify telemetry * Update sdk --------- Co-authored-by: Jonathan Lurie <[email protected]> * RD-492_maplibre-v5.0.0-pre10 (#7) * Update sdk * Update demos * Update dependencies * Update demos * Improve dev experience --------- Co-authored-by: Jonathan Lurie <[email protected]>
- Loading branch information
1 parent
e5f7214
commit 9dd624a
Showing
12 changed files
with
425 additions
and
267 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -112,3 +112,4 @@ tests/ | |
build/ | ||
dist/ | ||
docs/ | ||
tmp_* |
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
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,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>MapTiler Marker layout for MapTiler SDK</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" /> | ||
</head> | ||
|
||
<body> | ||
<h1>MapTiler Marker layout for MapTiler SDK Examples</h1> | ||
<ul> | ||
<li> | ||
<a href="cities-many.html?key=">Cities many</a> | ||
</li> | ||
<li> | ||
<a href="cities.html?key=">Cities</a> | ||
</li> | ||
</ul> | ||
|
||
<script type="module"> | ||
document.querySelectorAll("a").forEach((a) => { | ||
a.href += import.meta.env.VITE_API_KEY; | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.