X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2Ftile-test.c;h=66e105d1ed499f32bc5a35fbb0d78c662a1bebb5;hb=a682c20cdad0992f508fcced37370bb4c14fc8a8;hp=2151f243058d7c2645545adaba6ddb91bc046157;hpb=c6b75d03c13b03911e8bc4df46054caa1ace5a0a;p=grits diff --git a/src/tile-test.c b/src/tile-test.c index 2151f24..66e105d 100644 --- a/src/tile-test.c +++ b/src/tile-test.c @@ -58,7 +58,7 @@ gpointer do_bmng_cache(gpointer _image) GisWms *bmng_wms = gis_wms_new( "http://www.nasa.network.com/wms", "bmng200406", "image/jpeg", "bmng_test/", "jpg", 512, 256); - const char *path = gis_wms_make_local(bmng_wms, tile); + const char *path = gis_wms_fetch(bmng_wms, tile, GIS_ONCE, NULL, NULL); g_message("Loading bmng image: [%s]", path); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL); @@ -84,7 +84,7 @@ gpointer do_osm_cache(gpointer _image) GisWms *osm_wms = gis_wms_new( "http://labs.metacarta.com/wms/vmap0", "basic", "image/png", "osm_test/", "png", 512, 256); - const char *path = gis_wms_make_local(osm_wms, tile); + const char *path = gis_wms_fetch(osm_wms, tile, GIS_ONCE, NULL, NULL); g_message("Loading osm image: [%s]", path); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path, NULL);