summaryrefslogtreecommitdiff
path: root/platform/default/default_styles.cpp
blob: 5acc735a7d83a331f6732b15cfc6e1663b9e7a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "default_styles.hpp"

namespace mbgl {
namespace util {

const std::vector<std::pair<std::string, std::string>> defaultStyles = {
    { "asset://styles/streets-v8.json", "Mapbox Streets" },
    { "asset://styles/emerald-v8.json", "Emerald" },
    { "asset://styles/light-v8.json", "Light" },
    { "asset://styles/dark-v8.json", "Dark" },
    { "asset://styles/satellite-v8.json", "Satellite" },
    { "asset://styles/satellite-hybrid-v8.json", "Satellite Streets" }
};

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