]> git.street.me.uk Git - andy/viking.git/blame - src/osm.c
Merge branch 'MBTilesRead'
[andy/viking.git] / src / osm.c
CommitLineData
67209ca8
GB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5ae894dc 5 * Copyright (C) 2007,2013, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
2673b29d 6 * Copyright (c) 2012, Rob Norris <rw_norris@hotmail.com>
67209ca8
GB
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
8c00358d
GB
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
67209ca8 26
92806042 27#include <glib/gi18n.h>
67209ca8 28
67209ca8 29#include "osm.h"
f7d8a3c2 30#include "vikmapslayer.h"
8eb12ac6 31#include "vikslippymapsource.h"
50713970 32#include "vikwmscmapsource.h"
92806042 33#include "vikwebtoolcenter.h"
e1506f37 34#include "vikwebtoolbounds.h"
82993cc7 35#include "vikwebtool_datasource.h"
92806042 36#include "vikexttools.h"
82993cc7 37#include "vikexttool_datasources.h"
5149a69d
GB
38#include "vikgotoxmltool.h"
39#include "vikgoto.h"
5ae894dc 40#include "vikrouting.h"
5ec699da 41#include "vikroutingwebengine.h"
4f92972b 42
67209ca8
GB
43/* initialisation */
44void osm_init () {
0f08bd0d
GB
45 VikMapSource *mapnik_type =
46 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
47 "id", 13,
48 "label", "OpenStreetMap (Mapnik)",
49 "hostname", "tile.openstreetmap.org",
50 "url", "/%d/%d/%d.png",
05dbd9ba
JJ
51 "check-file-server-time", FALSE,
52 "use-etag", TRUE,
82aa018d 53 "copyright", "© OpenStreetMap contributors",
53ac8302
GB
54 "license", "CC-BY-SA",
55 "license-url", "http://www.openstreetmap.org/copyright",
0f08bd0d 56 NULL));
0f08bd0d
GB
57 VikMapSource *cycle_type =
58 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
59 "id", 17,
60 "label", "OpenStreetMap (Cycle)",
218cdecd
GB
61 "hostname", "b.tile.opencyclemap.org",
62 "url", "/cycle/%d/%d/%d.png",
6693f5f9 63 "check-file-server-time", TRUE,
05dbd9ba 64 "use-etag", FALSE,
82c3dd37 65 "copyright", "Tiles courtesy of Andy Allan © OpenStreetMap contributors",
53ac8302
GB
66 "license", "CC-BY-SA",
67 "license-url", "http://www.openstreetmap.org/copyright",
0f08bd0d 68 NULL));
5c9e34b9
RN
69 VikMapSource *transport_type =
70 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
71 "id", 20,
72 "label", "OpenStreetMap (Transport)",
73 "hostname", "c.tile2.opencyclemap.org",
74 "url", "/transport/%d/%d/%d.png",
75 "check-file-server-time", TRUE,
76 "use-etag", FALSE,
77 "copyright", "Tiles courtesy of Andy Allan © OpenStreetMap contributors",
78 "license", "CC-BY-SA",
79 "license-url", "http://www.openstreetmap.org/copyright",
80 NULL));
427976e5
RN
81 VikMapSource *mapquest_type =
82 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
83 "id", 19,
84 "label", "OpenStreetMap (MapQuest)",
85 "hostname", "otile1.mqcdn.com",
86 "url", "/tiles/1.0.0/osm/%d/%d/%d.png",
87 "check-file-server-time", TRUE,
88 "use-etag", FALSE,
89 "copyright", "Tiles Courtesy of MapQuest © OpenStreetMap contributors",
90 "license", "MapQuest Specific",
91 "license-url", "http://developer.mapquest.com/web/info/terms-of-use",
92 NULL));
b18a7f39
RN
93 VikMapSource *hot_type =
94 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
95 "id", 22,
96 "label", "OpenStreetMap (Humanitarian)",
97 "hostname", "c.tile.openstreetmap.fr",
98 "url", "/hot/%d/%d/%d.png",
99 "check-file-server-time", TRUE,
100 "use-etag", FALSE,
101 "copyright", "© OpenStreetMap contributors. Tiles courtesy of Humanitarian OpenStreetMap Team",
102 "license", "CC-BY-SA",
103 "license-url", "http://www.openstreetmap.org/copyright",
104 NULL));
427976e5 105
2673b29d
RN
106 // NB no cache needed for this type!!
107 VikMapSource *direct_type =
108 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
109 "id", 21,
110 "label", _("On Disk OSM Tile Format"),
111 // For using your own generated data assumed you know the license already!
112 "copyright", "© OpenStreetMap contributors", // probably
113 "use-direct-file-access", TRUE,
114 NULL));
115
0fb11294
RN
116 // NB no cache needed for this type!!
117 VikMapSource *mbtiles_type =
118 VIK_MAP_SOURCE(g_object_new(VIK_TYPE_SLIPPY_MAP_SOURCE,
119 "id", 23,
120 "label", _("MBTiles File"),
121 // For using your own generated data assumed you know the license already!
122 "copyright", "© OpenStreetMap contributors", // probably
123 "use-direct-file-access", TRUE,
124 "is-mbtiles", TRUE,
125 NULL));
126
427976e5 127 maps_layer_register_map_source (mapquest_type);
db03733a 128 maps_layer_register_map_source (mapnik_type);
db03733a 129 maps_layer_register_map_source (cycle_type);
5c9e34b9 130 maps_layer_register_map_source (transport_type);
b18a7f39 131 maps_layer_register_map_source (hot_type);
2673b29d 132 maps_layer_register_map_source (direct_type);
0fb11294 133 maps_layer_register_map_source (mbtiles_type);
92806042
GB
134
135 // Webtools
136 VikWebtoolCenter *webtool = NULL;
a22002e9 137 webtool = vik_webtool_center_new_with_members ( _("OSM (view)"), "http://openstreetmap.org/?lat=%s&lon=%s&zoom=%d" );
92806042
GB
138 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
139 g_object_unref ( webtool );
140
141 webtool = vik_webtool_center_new_with_members ( _("OSM (edit)"), "http://www.openstreetmap.org/edit?lat=%s&lon=%s&zoom=%d" );
142 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
143 g_object_unref ( webtool );
144
145 webtool = vik_webtool_center_new_with_members ( _("OSM (render)"), "http://www.informationfreeway.org/?lat=%s&lon=%s&zoom=%d&layers=B0000F000F" );
146 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
147 g_object_unref ( webtool );
5149a69d 148
e1506f37
RN
149 VikWebtoolBounds *webtoolbounds = NULL;
150 // Example: http://127.0.0.1:8111/load_and_zoom?left=8.19&right=8.20&top=48.605&bottom=48.590&select=node413602999
151 // JOSM or merkaartor must already be running with remote interface enabled
152 webtoolbounds = vik_webtool_bounds_new_with_members ( _("Local port 8111 (eg JOSM)"), "http://localhost:8111/load_and_zoom?left=%s&right=%s&bottom=%s&top=%s" );
153 vik_ext_tools_register ( VIK_EXT_TOOL ( webtoolbounds ) );
154 g_object_unref ( webtoolbounds );
155
2241ad12 156 // Datasource
82993cc7 157 VikWebtoolDatasource *vwtds = NULL;
5910b4fb
RN
158 vwtds = vik_webtool_datasource_new_with_members ( _("OpenStreetMap Notes"), "http://api.openstreetmap.org/api/0.6/notes.gpx?bbox=%s,%s,%s,%s&amp;closed=0", "LBRT", NULL );
159 vik_ext_tool_datasources_register ( VIK_EXT_TOOL ( vwtds ) );
160 g_object_unref ( vwtds );
161
82993cc7
RN
162 vwtds = vik_webtool_datasource_new_with_members ( _("OpenStreetBugs"), "http://openstreetbugs.schokokeks.org/api/0.1/getGPX?l=%s&r=%s&b=%s&t=%s&open=only_open_bugs", "LRBT", NULL );
163 vik_ext_tool_datasources_register ( VIK_EXT_TOOL ( vwtds ) );
164 g_object_unref ( vwtds );
165
5149a69d
GB
166 // Goto
167 VikGotoXmlTool *nominatim = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Nominatim",
168 "url-format", "http://nominatim.openstreetmap.org/search?q=%s&format=xml",
169 "lat-path", "/searchresults/place",
170 "lat-attr", "lat",
171 "lon-path", "/searchresults/place",
172 "lon-attr", "lon",
173 NULL ) );
174 vik_goto_register ( VIK_GOTO_TOOL ( nominatim ) );
175 g_object_unref ( nominatim );
54cef17b
GB
176
177 VikGotoXmlTool *namefinder = VIK_GOTO_XML_TOOL ( g_object_new ( VIK_GOTO_XML_TOOL_TYPE, "label", "OSM Name finder",
178 "url-format", "http://gazetteer.openstreetmap.org/namefinder/search.xml?find=%s&max=1",
179 "lat-path", "/searchresults/named",
180 "lat-attr", "lat",
181 "lon-path", "/searchresults/named",
182 "lon-attr", "lon",
183 NULL ) );
184 vik_goto_register ( VIK_GOTO_TOOL ( namefinder ) );
185 g_object_unref ( namefinder );
3346da31
RN
186
187 // Not really OSM but can't be bothered to create somewhere else to put it...
188 webtool = vik_webtool_center_new_with_members ( _("Wikimedia Toolserver GeoHack"), "http://toolserver.org/~geohack/geohack.php?params=%s;%s" );
189 vik_ext_tools_register ( VIK_EXT_TOOL ( webtool ) );
190 g_object_unref ( webtool );
5ae894dc 191
5ec699da
GB
192 /* See API references: https://github.com/DennisOSRM/Project-OSRM/wiki/Server-api */
193 VikRoutingEngine *osrm = g_object_new ( VIK_ROUTING_WEB_ENGINE_TYPE,
194 "id", "osrm",
195 "label", "OSRM",
196 "format", "gpx",
197 "url-base", "http://router.project-osrm.org/viaroute?output=gpx",
198 "url-start-ll", "&loc=%s,%s",
199 "url-stop-ll", "&loc=%s,%s",
200 "url-via-ll", "&loc=%s,%s",
201 NULL);
5ae894dc
GB
202 vik_routing_register ( VIK_ROUTING_ENGINE ( osrm ) );
203 g_object_unref ( osrm );
67209ca8
GB
204}
205