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

namespace mbgl {
namespace bench {

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

}
}