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

front: disable 3D terrain when set to 0 #5461

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion front/src/applications/editor/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,11 @@ const MapUnplugged: FC<PropsWithChildren<MapProps>> = ({
attributionControl={false}
touchZoomRotate
maxPitch={85}
terrain={{ source: 'terrain', exaggeration: terrain3DExaggeration }}
terrain={
terrain3DExaggeration
? { source: 'terrain', exaggeration: terrain3DExaggeration }
: undefined
}
doubleClickZoom={false}
interactive
cursor={cursor}
Expand Down
6 changes: 5 additions & 1 deletion front/src/applications/referenceMap/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ function Map() {
interactiveLayerIds={defineInteractiveLayers()}
touchZoomRotate
maxPitch={85}
terrain={{ source: 'terrain', exaggeration: terrain3DExaggeration }}
terrain={
terrain3DExaggeration
? { source: 'terrain', exaggeration: terrain3DExaggeration }
: undefined
}
>
<VirtualLayers />
<AttributionControl customAttribution={CUSTOM_ATTRIBUTION} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,11 @@ const Map: FC<MapProps> = ({ setExtViewport }) => {
interactiveLayerIds={interactiveLayerIds}
touchZoomRotate
maxPitch={85}
terrain={{ source: 'terrain', exaggeration: terrain3DExaggeration }}
terrain={
terrain3DExaggeration
? { source: 'terrain', exaggeration: terrain3DExaggeration }
: undefined
}
onLoad={handleLoadFinished}
>
<VirtualLayers />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ function Map() {
interactiveLayerIds={defineInteractiveLayers()}
touchZoomRotate
maxPitch={85}
terrain={{ source: 'terrain', exaggeration: terrain3DExaggeration }}
terrain={
terrain3DExaggeration
? { source: 'terrain', exaggeration: terrain3DExaggeration }
: undefined
}
>
<VirtualLayers />
<AttributionControl position="bottom-right" customAttribution={CUSTOM_ATTRIBUTION} />
Expand Down