summaryrefslogtreecommitdiff
path: root/src/mbgl/util/mapbox.hpp
blob: f3dfdd0b01110fa5d0cd60f818260056a55c3ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include <string>
#include <mbgl/style/types.hpp>

namespace mbgl {

class Tileset;

namespace util {
namespace mapbox {

bool isMapboxURL(const std::string& url);

std::string normalizeSourceURL(const std::string& baseURL, const std::string& url, const std::string& accessToken);
std::string normalizeStyleURL(const std::string& baseURL, const std::string& url, const std::string& accessToken);
std::string normalizeSpriteURL(const std::string& baseURL, const std::string& url, const std::string& accessToken);
std::string normalizeGlyphsURL(const std::string& baseURL, const std::string& url, const std::string& accessToken);
std::string normalizeTileURL(const std::string& baseURL, const std::string& url, const std::string& accessToken);

// Return a "mapbox://tiles/..." URL (suitable for normalizeTileURL) for the given Mapbox tile URL.
std::string canonicalizeTileURL(const std::string& url, SourceType, uint16_t tileSize);

// Replace URL templates with "mapbox://tiles/..." URLs (suitable for normalizeTileURL).
void canonicalizeTileset(Tileset&, const std::string& url, SourceType, uint16_t tileSize);

extern const uint64_t DEFAULT_OFFLINE_TILE_COUNT_LIMIT;

} // namespace mapbox
} // namespace util
} // namespace mbgl