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: 6f043a14f457554b80fbdd8a950ba473ac71673a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <string>

enum MapStyle
{
  MapStyleClear = 0,
  MapStyleDark = 1,
  MapStyleMerged = 2,
  MapStyleVehicleClear = 3,
  MapStyleVehicleDark = 4,
  // Add new map style here

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

extern MapStyle const kDefaultMapStyle;

extern MapStyle MapStyleFromSettings(std::string const & str);
extern std::string MapStyleToString(MapStyle mapStyle);
extern std::string DebugPrint(MapStyle mapStyle);