]> git.street.me.uk Git - andy/viking.git/blobdiff - src/osm.c
Relocate current data field
[andy/viking.git] / src / osm.c
index c24be981dc93fb44c8795b6be1fb7d7a0114a3a1..b666f3a769255d87ddbca045d0a2fcc6dd8b5c0b 100644 (file)
--- a/src/osm.c
+++ b/src/osm.c
@@ -38,7 +38,7 @@ static int osm_mapnik_download ( MapCoord *src, const gchar *dest_fn );
 static int osm_osmarender_download ( MapCoord *src, const gchar *dest_fn );
 static int bluemarble_download ( MapCoord *src, const gchar *dest_fn );
 
-static DownloadOptions osm_options = { NULL, 0 };
+static DownloadOptions osm_options = { NULL, 0, a_check_map_file };
 
 /* initialisation */
 void osm_init () {
@@ -131,7 +131,6 @@ static int bluemarble_download ( MapCoord *src, const gchar *dest_fn )
 {
    int res = -1;
    gchar *uri = g_strdup_printf ( "/com.modestmaps.bluemarble/%d-r%d-c%d.jpg", 17-src->scale, src->y, src->x );
-   g_print("s3.amazonaws.com/%s\n", uri);
    res = a_http_download_get_url ( "s3.amazonaws.com", uri, dest_fn, &osm_options );
 
    g_free ( uri );