# Visible Layer (common)

Any layer that renders something visible to the user.

## Properties

Inherits from: [Layer](layer.md)

<table border=”1” class=”docutils”> <thead> <tr> <th>Earth file</th> <th>Description</th> <th>Type</th> <th>Default</th> </tr> </thead> <tbody> <tr> <td>attenuation_range</td> <td>Range (meters) over which this layer fades from visible to invisible when approaching <code>max_range</code></td> <td>float</td> <td>0</td> </tr> <tr> <td>blend</td> <td>How this layer blends with the previously rendered layer<br /><code>interpolate</code> : blend based on alpha channel value<br /><code>modulate</code> : blend by multiplying color values</td> <td>string</td> <td>interpolate</td> </tr> <tr> <td>max_range</td> <td>Maximum camera distance (meters) at which to render this layer</td> <td>float</td> <td>infinity</td> </tr> <tr> <td>min_range</td> <td>Minimum camera distance (meters) at which to render this layer</td> <td>float</td> <td>0</td> </tr> <tr> <td>opacity</td> <td>Blending factor relative to underlying map layers</td> <td>float</td> <td>1.0</td> </tr> <tr> <td>visible</td> <td>Whether to render this layer at all</td> <td>bool</td> <td>true</td> </tr> </tbody> </table>