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: 750a0362dff827fe451043bdfe28117e3153e0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "std/string.hpp"

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

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

string DebugPrint(MapStyle mapStyle);