summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark/locations.hpp
blob: 1ea65d628034a54652d64f82f4708ad3160b5447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <vector>
#include <string>

namespace mbgl {
namespace bench {

struct Location {
    const std::string name;
    const double longitude;
    const double latitude;
    const double zoom;
    const double bearing;
};

extern const std::vector<Location> locations;

}
}