Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(server): add 3D OSM building tiles #340

Merged
merged 4 commits into from
Sep 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions server/pkg/builtin/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1287,10 +1287,24 @@ extensions:
- id: default
title: Model
fields:
- id: sourceType
type: string
title: Source type
description: Choose between an external 3D tileset or the OSM building 3d tileset.
defaultValue: url
choices:
- key: url
label: URL
- key: osm
label: OSM Buildings
- id: tileset
type: url
title: Tileset URL
description: A path to tileset.json in 3D tiles
availableIf:
field: sourceType
type: string
value: url
- id: styleUrl
type: url
title: Styling URL
Expand Down
6 changes: 6 additions & 0 deletions server/pkg/builtin/manifest_ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,12 @@ extensions:
default:
title: 3Dタイル
fields:
sourceType:
title: 種類
description: 3Dタイルの種類を選択します。
choices:
url: URL
osm: OSM Buildings
tileset:
title: タイルセットURL
description: 3Dタイルデータ内の tileset.json のURL
Expand Down