summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark/locations.cpp
blob: d42c930f72f30ae339511880bf0e13c813fa30fc (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
32
33
#include "locations.hpp"

namespace mbgl {
namespace bench {

//const std::vector<Location> locations = {
//    { "paris",             2.3411,   48.8664, 11,   0.0 },
//    { "paris2",            2.3516,   48.8356, 13, 273.8 },
//    { "alps",             10.6107,   46.9599,  6,   0.0 },
//    { "us east",         -84.3395,   36.9400,  5,   0.0 },
//    { "greater la",     -117.9529,   34.0259,  9,   0.0 },
//    { "sf",             -122.4202,   37.7625, 14,   0.0 },
//    { "oakland",        -122.2328,   37.8267, 12,   0.0 },
//    { "germany",           9.2280,   50.9262,  6,   0.0 },
//    { "east asia",          126.5,     33.35,  5,   0.0 },
//};

const std::vector<Location> locations = {
    { "paris",             2.3411,   48.8664, 15,   0.0 },
    { "paris2",            2.3516,   48.8356, 60, 280.0 },
    { "alps",             10.6107,   46.9599,  50,   0.0 },
    { "us east",         -84.3395,   36.9400,  15,   0.0 },
    { "greater la",     -117.9529,   34.0259,  60,   0.0 },
    { "sf",             -122.4202,   37.7625, 50,   280.0 },
    { "germany",           9.2280,   50.9262,  15,   0.0 },
    { "east asia",          126.5,     33.35,  60,   0.0 },
    { "paris3",             2.3411,   48.8664, 60,   0.0 },
    { "east asia2",          126.5,     33.35, 60,   0.0 },
    { "sf2",             -122.4202,   37.7625, 60,   0.0 },
};

}
}