summaryrefslogtreecommitdiff
path: root/platform/default/default_styles.hpp
blob: dc100093058c8e7dba3b9bdf0027f8667bc09d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MBGL_PLATFORM_DEFAULT_STYLES
#define MBGL_PLATFORM_DEFAULT_STYLES

#include <vector>
#include <string>

namespace mbgl {
namespace util {

// A list of default styles, with the first string being the URL
// and the second being the user-visible name.
extern const std::vector<std::pair<std::string, std::string>> defaultStyles;

} // end namespace util
} // end namespace mbgl

#endif