summaryrefslogtreecommitdiff
path: root/ios/benchmark/locations.hpp
blob: 96f9c6025bfb88f48bd08d3014d014c0d399b7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef MBGL_BENCH_LOCATIONS
#define MBGL_BENCH_LOCATIONS

#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;

}
}

#endif