Interface IMapStyle

Source
Expand description

Interface for map styles.

interface IMapStyle {
    background: `#${string}`;
    buildings: `#${string}`;
    parks: `#${string}`;
    points: `#${string}`;
    polygons: `#${string}`;
    polylines: `#${string}`;
    roads: `#${string}`;
    surface: `#${string}`;
    water: `#${string}`;
}

Properties§

§background: `#${string}`

Color of the map's background.

§buildings: `#${string}`

Color of the map's buildings.

§parks: `#${string}`

Color of the map's parks.

§points: `#${string}`
§polygons: `#${string}`
§polylines: `#${string}`
§roads: `#${string}`

Color of the map's roads.

§surface: `#${string}`

Color of the map's surface.

§water: `#${string}`

Color of the map's water bodies.