#include #include #include #include #include #include #include #include #include #include #include #include GLFWView *view = nullptr; void quit_handler(int) { if (view) { fprintf(stderr, "waiting for quit...\n"); glfwSetWindowShouldClose(view->window, true); glfwPostEmptyEvent(); } else { exit(0); } } int main(int argc, char *argv[]) { mbgl::Log::Set(); int fullscreen_flag = 0; std::string style; const struct option long_options[] = { {"fullscreen", no_argument, &fullscreen_flag, 'f'}, {"style", required_argument, 0, 's'}, {0, 0, 0, 0} }; while (true) { int option_index = 0; int opt = getopt_long(argc, argv, "fs:", long_options, &option_index); if (opt == -1) break; switch (opt) { case 0: if (long_options[option_index].flag != 0) break; case 'f': // handle fullscreen_flag break; case 's': style = std::string("asset://") + std::string(optarg); default: break; } } // sigint handling struct sigaction sigIntHandler; sigIntHandler.sa_handler = quit_handler; sigemptyset(&sigIntHandler.sa_mask); sigIntHandler.sa_flags = 0; sigaction(SIGINT, &sigIntHandler, NULL); view = new GLFWView(); mbgl::SQLiteCache cache("/tmp/mbgl-cache.db"); mbgl::DefaultFileSource fileSource(&cache); mbgl::Map map(*view, fileSource); // Load settings mbgl::Settings_JSON settings; map.setLatLngZoom(mbgl::LatLng(settings.latitude, settings.longitude), settings.zoom); map.setBearing(settings.bearing); map.setDebug(settings.debug); // Set access token if present const char *token = getenv("MAPBOX_ACCESS_TOKEN"); if (token == nullptr) { mbgl::Log::Warning(mbgl::Event::Setup, "no access token set. mapbox.com tiles won't work."); } else { map.setAccessToken(std::string(token)); } // Load style if (style.empty()) { style = std::string("asset://") + std::string("styles/bright-v7.json"); } map.setStyleURL(style); int ret = view->run(); // Save settings mbgl::LatLng latLng = map.getLatLng(); settings.latitude = latLng.latitude; settings.longitude = latLng.longitude; settings.zoom = map.getZoom(); settings.bearing = map.getBearing(); settings.debug = map.getDebug(); settings.save(); return ret; }