roborock.map
Module for Roborock map related data classes.
@dataclass
class
MapParserConfig:
45@dataclass 46class MapParserConfig: 47 """Configuration for the Roborock map parser.""" 48 49 drawables: list[Drawable] = field(default_factory=_default_drawable_factory) 50 """List of drawables to include in the map rendering.""" 51 52 show_background: bool = True 53 """Whether to show the background of the map.""" 54 55 map_scale: int = DEFAULT_MAP_SCALE 56 """Scale factor for the map."""
Configuration for the Roborock map parser.
MapParserConfig( drawables: list[vacuum_map_parser_base.config.drawable.Drawable] = <factory>, show_background: bool = True, map_scale: int = 4)