#include #include #include #include #include #include #include #include #include #include #include #if __APPLE__ #include #else #include #endif #include namespace po = boost::program_options; #include #include #include int main(int argc, char *argv[]) { std::string style_path; double lat = 0, lon = 0; double zoom = 0; double bearing = 0; int width = 256; int height = 256; double pixelRatio = 1.0; std::string output = "out.png"; std::string cache_file = "cache.sqlite"; std::vector classes; std::string token; po::options_description desc("Allowed options"); desc.add_options() ("style,s", po::value(&style_path)->required()->value_name("json"), "Map stylesheet") ("lon,x", po::value(&lon)->value_name("degrees")->default_value(lon), "Longitude") ("lat,y", po::value(&lat)->value_name("degrees")->default_value(lat), "Latitude in degrees") ("zoom,z", po::value(&zoom)->value_name("number")->default_value(zoom), "Zoom level") ("bearing,b", po::value(&bearing)->value_name("degrees")->default_value(bearing), "Bearing") ("width,w", po::value(&width)->value_name("pixels")->default_value(width), "Image width") ("height,h", po::value(&height)->value_name("pixels")->default_value(height), "Image height") ("class,c", po::value(&classes)->value_name("name"), "Class name") ("token,t", po::value(&token)->value_name("key")->default_value(token), "Mapbox access token") ("output,o", po::value(&output)->value_name("file")->default_value(output), "Output file name") ("cache,d", po::value(&cache_file)->value_name("file")->default_value(cache_file), "Cache database file name") ; try { po::variables_map vm; po::store(po::parse_command_line(argc, argv, desc), vm); po::notify(vm); } catch(std::exception& e) { std::cout << "Error: " << e.what() << std::endl << desc; exit(1); } std::string style = mbgl::util::read_file(style_path); using namespace mbgl; #if __APPLE__ Log::Set(); #else Log::Set(); #endif mbgl::SQLiteCache cache(cache_file); mbgl::DefaultFileSource fileSource(&cache); // Try to load the token from the environment. if (!token.size()) { const char *token_ptr = getenv("MAPBOX_ACCESS_TOKEN"); if (token_ptr) { token = token_ptr; } } HeadlessView view; Map map(view, fileSource); // Set access token if present if (token.size()) { map.setAccessToken(std::string(token)); } map.setStyleJSON(style, "."); map.setClasses(classes); view.resize(width, height, pixelRatio); map.resize(width, height, pixelRatio); map.setLonLatZoom(lon, lat, zoom); map.setBearing(bearing); std::unique_ptr pixels; // Run the loop. It will terminate when we don't have any further listeners. map.run(); // Get the data from the GPU. pixels = view.readPixels(); const unsigned int w = width * pixelRatio; const unsigned int h = height * pixelRatio; const std::string image = util::compress_png(w, h, pixels.get()); util::write_file(output, image); }