]> git.street.me.uk Git - andy/viking.git/blobdiff - src/google.c
Replace defunct IP to location lookup service.
[andy/viking.git] / src / google.c
index 98b01fa64ae1f78e1715ad35ec6ccae6cba7e43c..c7e7ecc2754e280fb9873fdb8d08c43189321e0f 100644 (file)
 
 void google_init () {
   // Webtools
-  VikWebtoolCenter *webtool = vik_webtool_center_new_with_members ( _("Google"), "http://maps.google.com/maps?f=q&geocode=&ie=UTF8&ll=%s,%s&z=%d&iwloc=addr" );
+  VikWebtoolCenter *webtool = vik_webtool_center_new_with_members ( _("Google"), "http://maps.google.com/maps/@%s,%s,%dz" );
   vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
   g_object_unref ( webtool );
 
   // Goto
+  /*
+   * Google no longer supports the API we used
+   *
   GoogleGotoTool *gototool = google_goto_tool_new (  );
   vik_goto_register ( VIK_GOTO_TOOL ( gototool ) );
   g_object_unref ( gototool );
+  */
 }
 
 /**
@@ -59,6 +63,9 @@ void google_post_init ()
    *
    * gpsbabel supports this format.
    */
+  /*
+   * Google no longer supports the API we used
+   *
   if ( a_babel_available() ) {
     VikRoutingEngine *routing = g_object_new ( VIK_ROUTING_WEB_ENGINE_TYPE,
       "id", "google",
@@ -74,4 +81,5 @@ void google_post_init ()
     vik_routing_register ( VIK_ROUTING_ENGINE ( routing ) );
     g_object_unref ( routing );
   }
+  */
 }