mirror of
				https://github.com/gpxstudio/gpx.studio.git
				synced 2025-11-04 05:21:09 +00:00 
			
		
		
		
	only set terrain when pitch > 0
This commit is contained in:
		@@ -169,10 +169,12 @@
 | 
			
		||||
				tileSize: 512,
 | 
			
		||||
				maxzoom: 14
 | 
			
		||||
			});
 | 
			
		||||
			newMap.setTerrain({
 | 
			
		||||
				source: 'mapbox-dem',
 | 
			
		||||
				exaggeration: newMap.getPitch() > 0 ? 1 : 0
 | 
			
		||||
			});
 | 
			
		||||
			if (newMap.getPitch() > 0) {
 | 
			
		||||
				newMap.setTerrain({
 | 
			
		||||
					source: 'mapbox-dem',
 | 
			
		||||
					exaggeration: 1
 | 
			
		||||
				});
 | 
			
		||||
			}
 | 
			
		||||
			newMap.setFog({
 | 
			
		||||
				color: 'rgb(186, 210, 235)',
 | 
			
		||||
				'high-color': 'rgb(36, 92, 223)',
 | 
			
		||||
@@ -186,10 +188,7 @@
 | 
			
		||||
						exaggeration: 1
 | 
			
		||||
					});
 | 
			
		||||
				} else {
 | 
			
		||||
					newMap.setTerrain({
 | 
			
		||||
						source: 'mapbox-dem',
 | 
			
		||||
						exaggeration: 0
 | 
			
		||||
					});
 | 
			
		||||
					newMap.setTerrain(null);
 | 
			
		||||
				}
 | 
			
		||||
			});
 | 
			
		||||
		});
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user