+ scale_factor is 1.0 in cairo renderer
TODO: should consider using variable scale_factor as in AGG
This commit is contained in:
parent
9ae70c4823
commit
f4539474fc
1 changed files with 1 additions and 1 deletions
|
@ -867,7 +867,7 @@ void cairo_renderer_base::start_map_processing(Map const& map)
|
|||
if (height_expr)
|
||||
{
|
||||
value_type result = boost::apply_visitor(evaluate<Feature,value_type>(*feature), *height_expr);
|
||||
height = 0.7071 * result.to_double();
|
||||
height = result.to_double(); //scale_factor is always 1.0 atm
|
||||
}
|
||||
|
||||
for (unsigned i = 0; i < feature->num_geometries(); ++i)
|
||||
|
|
Loading…
Add table
Reference in a new issue