X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/75b7457a731454be45376991de948efbbbc081ea..c12d43471d4932dabaa39249104c29f83b4181c0:/src/main.c diff --git a/src/main.c b/src/main.c index 1eec76e0..84376f81 100644 --- a/src/main.c +++ b/src/main.c @@ -34,15 +34,12 @@ #include "viklayer_defaults.h" #include "globals.h" #include "vikmapslayer.h" +#include "vikgeoreflayer.h" #include "vikrouting.h" #include "vikutils.h" #include "util.h" #include "toolbar.h" -#ifdef VIK_CONFIG_GEOCACHES -void a_datasource_gc_init(); -#endif - #ifdef HAVE_STDLIB_H #include #endif @@ -101,12 +98,22 @@ static int myXErrorHandler(Display *display, XErrorEvent *theEvent) } #endif +// Default values that won't actually get applied unless changed by command line parameter values +static gdouble latitude = 0.0; +static gdouble longitude = 0.0; +static gint zoom_level_osm = -1; +static gint map_id = -1; + /* Options */ static GOptionEntry entries[] = { { "debug", 'd', 0, G_OPTION_ARG_NONE, &vik_debug, N_("Enable debug output"), NULL }, { "verbose", 'V', 0, G_OPTION_ARG_NONE, &vik_verbose, N_("Enable verbose output"), NULL }, { "version", 'v', 0, G_OPTION_ARG_NONE, &vik_version, N_("Show version"), NULL }, + { "latitude", 0, 0, G_OPTION_ARG_DOUBLE, &latitude, N_("Latitude in decimal degrees"), NULL }, + { "longitude", 0, 0, G_OPTION_ARG_DOUBLE, &longitude, N_("Longitude in decimal degrees"), NULL }, + { "zoom", 'z', 0, G_OPTION_ARG_INT, &zoom_level_osm, N_("Zoom Level (OSM). Value can be 0 - 22"), NULL }, + { "map", 'm', 0, G_OPTION_ARG_INT, &map_id, N_("Add a map layer by id value. Use 0 for the default map."), NULL }, { NULL } }; @@ -184,14 +191,11 @@ int main( int argc, char *argv[] ) /* Init modules/plugins */ modules_init(); + vik_georef_layer_init (); maps_layer_init (); a_mapcache_init (); a_background_init (); -#ifdef VIK_CONFIG_GEOCACHES - a_datasource_gc_init(); -#endif - a_toolbar_init(); vik_routing_prefs_init(); @@ -231,6 +235,8 @@ int main( int argc, char *argv[] ) vik_window_new_window_finish ( first_window ); + vu_command_line ( first_window, latitude, longitude, zoom_level_osm, map_id ); + gtk_main (); gdk_threads_leave (); @@ -243,6 +249,8 @@ int main( int argc, char *argv[] ) a_preferences_uninit (); a_settings_uninit (); + modules_uninit(); + curl_download_uninit(); vu_finalize_lat_lon_tz_lookup ();