Welcome to mirror list, hosted at ThFree Co, Russian Federation.

map_style.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2ac4a008a11c7ea90ade638b38085e07fa26d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "std/string.hpp"

enum MapStyle
{
  MapStyleLight = 0, //< The first must be 0
  MapStyleDark = 1,
  MapStyleClear = 2,
  MapStyleMerged = 3,
  // Add new map style here

  // Specifies number of MapStyle enum values, must be last
  MapStyleCount
};

extern MapStyle const kDefaultMapStyle;

string DebugPrint(MapStyle mapStyle);