]> git.street.me.uk Git - andy/viking.git/blobdiff - src/main.c
Allow starting Viking with command line parameters to set position, zoom and map...
[andy/viking.git] / src / main.c
index 1eec76e0cff2b23e4b30616df2dd825b932d8e5c..84376f8169437e956c1fb8c2b4039cfb3c2a4f48 100644 (file)
 #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 <stdlib.h>
 #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 ();