File indexing completed on 2024-05-05 04:22:10

0001 // SPDX-FileCopyrightText: 2019-2021 Johannes Zarl-Zierl <johannes@zarl-zierl.at>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-or-later
0004 
0005 #ifndef MAP_ENUMS_H
0006 #define MAP_ENUMS_H
0007 
0008 namespace Map
0009 {
0010 
0011 /**
0012  * @brief The MapStyle enum influences the drawing style of images/clusters on the MapView.
0013  */
0014 enum class MapStyle {
0015     ShowPins, ///< Show GeoClusters by default and show pins instead of thumbnails when zooming in.
0016     ShowThumbnails, ///< Show GeoClusters by default and show thumbnails when zooming in.
0017     ForceShowThumbnails, ///< Show individual thumbnails even for GeoClusters
0018 };
0019 
0020 }
0021 
0022 #endif /* MAP_ENUMS_H */
0023 
0024 // vi:expandtab:tabstop=4 shiftwidth=4: