mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
10 lines
175 B
Python
10 lines
175 B
Python
from enum import Enum
|
|
|
|
|
|
class BaseMapProvider(Enum):
|
|
"""Basemap provider available in pydeck"""
|
|
|
|
MAPBOX = "mapbox"
|
|
GOOGLE_MAPS = "google_maps"
|
|
CARTO = "carto"
|