mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-15 22:18:22 +00:00
mod_tile: Move map style & font location into render_config.h. Fix up operation with non-metatile rendering. Several utilities are not implemented for non-metatile (render_list, render_old, speedtest).
This commit is contained in:
@ -22,6 +22,15 @@
|
||||
#include "dir_utils.h"
|
||||
#include "store.h"
|
||||
|
||||
#ifndef METATILE
|
||||
#warning("convert_meta not implemented for non-metatile mode. Feel free to submit fix")
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
fprintf(stderr, "convert_meta not implemented for non-metatile mode. Feel free to submit fix!\n");
|
||||
return -1;
|
||||
}
|
||||
#else
|
||||
|
||||
static int minZoom = 0;
|
||||
static int maxZoom = 18;
|
||||
static int verbose = 0;
|
||||
@ -162,3 +171,4 @@ int main(int argc, char **argv)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user