here.inspector.styles

Source code for here.inspector.styles

Copyright (C) 2019-2022 HERE Global B.V. and its affiliate(s).

All rights reserved.

This software and other materials contain proprietary information

controlled by HERE and are protected by applicable copyright legislation.

Any use and utilization of this software and other materials and

disclosure to any third parties is conditional upon having a separate

agreement with HERE for the access, use, utilization or disclosure of this

software. In the absence of such agreement, the use of the software is not

allowed.

"""HERE Platform Python SDK, generic styles for the inspector
"""

from enum import Enum

[docs]
class Color(Enum):
"""Represent a generic inspector color.

These enumerators are used to easily access predefined styles.
"""

AQUA = 0
RED = 1
GREEN = 2
PINK = 3
ORANGE = 4
BLUE = 5
YELLOW = 6
PURPLE = 7
GRAY = 8

[docs]
class Theme(Enum):
"""
Represent a map theme (base map and colors).
"""

LIGHT_BLANK = 10
LIGHT_MAP = 11

DARK_BLANK = 20 - not yet supported

DARK_MAP = 21