Skip to content

Commit

Permalink
Add outline to buildings (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbanning authored Mar 10, 2022
1 parent af2081f commit 35c13b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/recipe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ function Makie.plot!(osmplot::OSMPlot{<:Tuple{<:OSMGraph}})
if !isnothing(osmplot.buildings[])
building_polys = @lift(get_building_polys($(osmplot.buildings)))
bp = poly!(osmplot, building_polys;
color = BUILDINGSCOLORS, osmplot.buildingskwargs...)
color = BUILDINGSCOLORS,
strokecolor = colorant"#444", strokewidth = 0.5,
osmplot.buildingskwargs...)
bp.inspectable[] = false # Disable building inspection for now
end

Expand Down

0 comments on commit 35c13b0

Please sign in to comment.