From 9688562df3dc478921e25549b71ccefb91643468 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sun, 17 Nov 2013 20:10:20 -0800 Subject: [PATCH] python render_with_detector: respect scale_factor and offsets - refs #2075 --- bindings/python/mapnik_python.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/mapnik_python.cpp b/bindings/python/mapnik_python.cpp index 7e2945603..fcf9a24b6 100644 --- a/bindings/python/mapnik_python.cpp +++ b/bindings/python/mapnik_python.cpp @@ -193,7 +193,7 @@ void render_with_detector( unsigned offset_y = 0u) { python_unblock_auto_block b; - mapnik::agg_renderer ren(map,image,detector); + mapnik::agg_renderer ren(map,image,detector,scale_factor,offset_x,offset_y); ren.apply(); }