Sideband_CE/sbapp/mapview/__init__.py

29 lines
450 B
Python
Raw Normal View History

2023-10-19 15:01:17 +02:00
# coding=utf-8
"""
MapView
=======
MapView is a Kivy widget that display maps.
"""
from mapview.source import MapSource
from mapview.types import Bbox, Coordinate
from mapview.view import (
MapLayer,
MapMarker,
2023-10-21 22:27:09 +02:00
CustomMapMarker,
2023-10-19 15:01:17 +02:00
MapMarkerPopup,
MapView,
MarkerMapLayer,
)
__all__ = [
"Coordinate",
"Bbox",
"MapView",
"MapSource",
"MapMarker",
"MapLayer",
"MarkerMapLayer",
"MapMarkerPopup",
]