]> git.street.me.uk Git - andy/viking.git/blame_incremental - src/osm.c
When getting data via the GPS layer automatically set the view to see it, unless...
[andy/viking.git] / src / osm.c
... / ...
CommitLineData
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 * Copyright (C) 2007, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#include <glib/gi18n.h>
27
28#include "osm.h"
29#include "vikmapslayer.h"
30#include "vikslippymapsource.h"
31#include "vikwmscmapsource.h"
32#include "vikwebtoolcenter.h"
33#include "vikexttools.h"
34#include "vikgotoxmltool.h"
35#include "vikgoto.h"
36
37/* initialisation */
38void osm_init () {
39 VikMapSource *osmarender_type =
40 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
41 "id", 12,
42 "label", "OpenStreetMap (Osmarender)",
43 "hostname", "tah.openstreetmap.org",
44 "url", "/Tiles/tile/%d/%d/%d.png",
45 "check-file-server-time", TRUE,
46 "use-etag", FALSE,
47 "copyright", "© OpenStreetMap contributors",
48 "license", "CC-BY-SA",
49 "license-url", "http://www.openstreetmap.org/copyright",
50 NULL));
51 VikMapSource *mapnik_type =
52 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
53 "id", 13,
54 "label", "OpenStreetMap (Mapnik)",
55 "hostname", "tile.openstreetmap.org",
56 "url", "/%d/%d/%d.png",
57 "check-file-server-time", FALSE,
58 "use-etag", TRUE,
59 "copyright", "© OpenStreetMap contributors",
60 "license", "CC-BY-SA",
61 "license-url", "http://www.openstreetmap.org/copyright",
62 NULL));
63 VikMapSource *maplint_type =
64 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
65 "id", 14,
66 "label", "OpenStreetMap (Maplint)",
67 "hostname", "tah.openstreetmap.org",
68 "url", "/Tiles/maplint.php/%d/%d/%d.png",
69 "check-file-server-time", TRUE,
70 "use-etag", FALSE,
71 "copyright", "© OpenStreetMap contributors",
72 "license", "CC-BY-SA",
73 "license-url", "http://www.openstreetmap.org/copyright",
74 NULL));
75 VikMapSource *cycle_type =
76 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
77 "id", 17,
78 "label", "OpenStreetMap (Cycle)",
79 "hostname", "b.tile.opencyclemap.org",
80 "url", "/cycle/%d/%d/%d.png",
81 "check-file-server-time", TRUE,
82 "use-etag", FALSE,
83 "copyright", "© OpenStreetMap contributors",
84 "license", "CC-BY-SA",
85 "license-url", "http://www.openstreetmap.org/copyright",
86 NULL));
87 VikMapSource *wms_type =
88 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_WMSC_MAP_SOURCE,
89 "id", 18,
90 "label", "OpenStreetMap (WMS)",
91 "hostname", "full.wms.geofabrik.de",
92 "url", "/std/demo_key?LAYERS=osm-full&FORMAT=image/png&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&EXCEPTIONS=&SRS=EPSG:4326&BBOX=%s,%s,%s,%s&WIDTH=256&HEIGHT=256",
93 "check-file-server-time", FALSE,
94 "copyright", "© OpenStreetMap contributors",
95 "license", "CC-BY-SA",
96 "license-url", "http://www.openstreetmap.org/copyright",
97 NULL));
98
99 maps_layer_register_map_source (osmarender_type);
100 maps_layer_register_map_source (mapnik_type);
101 maps_layer_register_map_source (maplint_type);
102 maps_layer_register_map_source (cycle_type);
103 maps_layer_register_map_source (wms_type);
104
105 // Webtools
106 VikWebtoolCenter *webtool = NULL;
107 webtool = vik_webtool_center_new_with_members ( _("OSM (view)"), "http://openstreetmap.org/?lat=%s&lon=%s&zoom=%d&layers=B000FTF" );
108 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
109 g_object_unref ( webtool );
110
111 webtool = vik_webtool_center_new_with_members ( _("OSM (edit)"), "http://www.openstreetmap.org/edit?lat=%s&lon=%s&zoom=%d" );
112 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
113 g_object_unref ( webtool );
114
115 webtool = vik_webtool_center_new_with_members ( _("OSM (render)"), "http://www.informationfreeway.org/?lat=%s&lon=%s&zoom=%d&layers=B0000F000F" );
116 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
117 g_object_unref ( webtool );
118
119 // Goto
120 VikGotoXmlTool *nominatim = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Nominatim",
121 "url-format", "http://nominatim.openstreetmap.org/search?q=%s&format=xml",
122 "lat-path", "/searchresults/place",
123 "lat-attr", "lat",
124 "lon-path", "/searchresults/place",
125 "lon-attr", "lon",
126 NULL ) );
127 vik_goto_register ( VIK_GOTO_TOOL ( nominatim ) );
128 g_object_unref ( nominatim );
129
130 VikGotoXmlTool *namefinder = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Name finder",
131 "url-format", "http://gazetteer.openstreetmap.org/namefinder/search.xml?find=%s&max=1",
132 "lat-path", "/searchresults/named",
133 "lat-attr", "lat",
134 "lon-path", "/searchresults/named",
135 "lon-attr", "lon",
136 NULL ) );
137 vik_goto_register ( VIK_GOTO_TOOL ( namefinder ) );
138 g_object_unref ( namefinder );
139}
140