Learn how to configure global settings and atmospheric effects in 3DMapFi.
// Example: Setting the map projection map.setProjection('globe'); // Options: 'globe', 'flat', etc.
// Example: Configuring lighting map.setLighting({ ambientIntensity: 0.6, directionalIntensity: 1.2, directionalColor: "#ffffff" });
// Example: Setting rendering quality map.setRenderingQuality('high'); // Options: 'low', 'medium', 'high'
// Example: Setting fog options map.setAtmosphere({ fogColor: "#aabbcc", fogDensity: 0.5 });
// Example: Setting sky color map.setAtmosphere({ skyColor: "#87ceeb" });
// Example: Setting sun position and intensity map.setAtmosphere({ sunPosition: [100, 200, 300], sunIntensity: 1.0 });
// Example: Combining atmosphere options map.setAtmosphere({ fogColor: "#ddeeff", fogDensity: 0.3, skyColor: "#b0e0e6", sunPosition: [50, 150, 250], sunIntensity: 0.8 });