summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/default/settings_json.hpp
blob: ceec1e7fde4cff6ae07a08539899d45793560b91 (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;
};

}

#endif