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§

Source§

background: `#${string}`

Color of the map's background.

Source§

buildings: `#${string}`

Color of the map's buildings.

Source§

parks: `#${string}`

Color of the map's parks.

Source§

points: `#${string}`

Source§

polygons: `#${string}`

Source§

polylines: `#${string}`

Source§

roads: `#${string}`

Color of the map's roads.

Source§

surface: `#${string}`

Color of the map's surface.

Source§

water: `#${string}`

Color of the map's water bodies.