Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Added some base maps #2

Merged
merged 3 commits into from
Jan 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,83 @@ function App() {
<option value={"./styles/arcgis.json"}>
🛰 ArcGIS World Imagery
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/clearmapVT-esri.json"
}
>
🗺 ClearMapVT-Esri
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/rastertile.json"
}
>
🗺 ClearMapRaster-Esri
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-clearmap-plain.json"
}
>
🔒 InternalOnly-ClearMapVT-Plain
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-clearmap-gray.json"
}
>
🔒 InternalOnly-ClearMapVT-Gray
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-clearmap-dark.json"
}
>
🔒 InternalOnly-ClearMapVT-Dark
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-clearmap-modis.json"
}
>
🔒 InternalOnly-ClearMapVT-withModis
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-style-std.json"
}
>
🔒 InternalOnly-UniteStreetMapVT-Standard
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-style-prod.json"
}
>
🔒 InternalOnly-UniteStreetMapVT-Buidling3D
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-style-el.json"
}
>
🔒 InternalOnly-UniteStreetMapVT-Contour
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-style-el2.json"
}
>
🔒 InternalOnly-UniteStreetMapVT-3DTerrain
</option>
<option
value={
"https://ubukawa.github.io/ss-styles/styles/dev-style-std-azure.json"
}
>
🔒 InternalOnly-UniteStreetMapVT-withAzure
</option>
</select>
</div>
<div style={{ whiteSpace: "nowrap", paddingLeft: "15px" }}>
Expand Down