summaryrefslogtreecommitdiff
path: root/include/mbgl/util/mapbox.hpp
blob: 0fbb9a91edf761f7ace6abc59b7f0bead2f88248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MBGL_UTIL_MAPBOX
#define MBGL_UTIL_MAPBOX

#include <string>

namespace mbgl {
namespace util {
namespace mapbox {

std::string normalizeSourceURL(const std::string& url, const std::string& accessToken);
std::string normalizeGlyphsURL(const std::string& url, const std::string& accessToken);

}
}
}

#endif