summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/default/settings_json.hpp
blob: 707d05eb1844aad0a80d20bf7a7671a2db0886bc (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
#ifndef MBGL_JSON_SETTINGS
#define MBGL_JSON_SETTINGS

#include <mbgl/map/mode.hpp>

namespace mbgl {

class Settings_JSON {
public:
    Settings_JSON();
    void load();
    void save();
    void clear();

public:
    double longitude = 0;
    double latitude = 0;
    double zoom = 0;
    double bearing = 0;
    double pitch = 0;

    EnumType debug = 0;
};

} // namespace mbgl

#endif