summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark/locations.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/benchmark/locations.hpp')
-rw-r--r--platform/ios/benchmark/locations.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/platform/ios/benchmark/locations.hpp b/platform/ios/benchmark/locations.hpp
new file mode 100644
index 0000000000..96f9c6025b
--- /dev/null
+++ b/platform/ios/benchmark/locations.hpp
@@ -0,0 +1,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 \ No newline at end of file