]> git.street.me.uk Git - andy/viking.git/blame - src/googlemaps.c
Document Fix #1947260
[andy/viking.git] / src / googlemaps.c
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
4c77d5e0
GB
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
50a14534 24
4c77d5e0 25#include <glib/gi18n.h>
50a14534 26#include <gtk/gtk.h>
64c45d1a
GB
27
28#ifdef HAVE_MATH_H
50a14534 29#include <math.h>
64c45d1a
GB
30#endif
31
79845167 32#include "viking.h"
50a14534
EB
33#include "coords.h"
34#include "vikcoord.h"
35#include "mapcoord.h"
85611cd9 36#include "download.h"
cdcaf41c 37#include "vikmapslayer.h"
50a14534
EB
38
39#include "googlemaps.h"
40
1ac37c09 41static DownloadOptions googlemaps_options = { "http://maps.google.com/", 0, a_check_map_file };
80214df2 42
cdcaf41c
QT
43/* initialisation */
44void googlemaps_init () {
45 VikMapsLayer_MapType map_type = { 9, 128, 128, VIK_VIEWPORT_DRAWMODE_GOOGLE, googlemaps_coord_to_mapcoord, googlemaps_mapcoord_to_center_coord, googlemaps_download };
4c77d5e0 46 maps_layer_register_type(_("Old Google Maps"), 9, &map_type);
cdcaf41c
QT
47}
48
50a14534
EB
49/* 1 << (x-1) is like a 2**(x-1) */
50#define GZ(x) ((1<<(x-1))*GOOGLEMAPS_ZOOM_ONE_MPP)
51
52static const gdouble scale_mpps[] = { GZ(1)/2, GZ(1), GZ(2), GZ(3), GZ(4), GZ(5), GZ(6), GZ(7), GZ(8), GZ(9),
53 GZ(10), GZ(11), GZ(12), GZ(13), GZ(14), GZ(15) };
54
7f5ab6fb 55static const gint num_scales = (sizeof(scale_mpps) / sizeof(scale_mpps[0]));
50a14534
EB
56
57#define ERROR_MARGIN 0.01
fa5e756d 58static guint8 googlemaps_zoom ( gdouble mpp ) {
50a14534 59 gint i;
7f5ab6fb 60 for ( i = 0; i < num_scales; i++ ) {
50a14534
EB
61 if ( ABS(scale_mpps[i] - mpp) < ERROR_MARGIN )
62 return i;
63 }
64 return 255;
65}
66
67gboolean googlemaps_coord_to_mapcoord ( const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest )
68{
69 g_assert ( src->mode == VIK_COORD_LATLON );
70
71 if ( xzoom != yzoom )
72 return FALSE;
73
74 dest->scale = googlemaps_zoom ( xzoom );
75 if ( dest->scale == 255 )
76 return FALSE;
77
78 dest->x = (gint) floor ( floor ((src->east_west + 98.35) * (131072 >> dest->scale) * 0.77162458338772) / 128);
79 dest->y = (gint) floor ( floor ((39.5 - src->north_south) * (131072 >> dest->scale)) / 128);
80 dest->z = 0;
81 return TRUE;
82}
83
84void googlemaps_mapcoord_to_center_coord ( MapCoord *src, VikCoord *dest )
85{
86 dest->mode = VIK_COORD_LATLON;
87 dest->north_south = 39.5 - (1.0/(131072 >> src->scale) * (src->y+0.5) * 128);
88 dest->east_west = 1.0 / (131072 >> src->scale) * (src->x+0.5) / 0.77162458338772 * 128 - 98.35;
89}
90
dc2c040e 91int googlemaps_download ( MapCoord *src, const gchar *dest_fn )
50a14534 92{
6c02911c 93 gchar *uri = g_strdup_printf ( "/mt?&x=%d&y=%d&zoom=%d", src->x, src->y, src->scale );
80214df2 94 a_http_download_get_url ( "mt.google.com", uri, dest_fn, &googlemaps_options );
50a14534 95 g_free ( uri );
dc2c040e 96 return 1;
50a14534 97}