I'm in the process of building "planner" map for Elvenar ... more for my own use at present, but possibly as a base for a city-planning guide down the track
the problem I have is the display of my first building ... the square in the foreground (on top of the green grid) - it should display a bordered square, but as you can see, it is displaying cross-hairs instead of an outer border
this is the broken map, and I have made the source file downloadable http://kstingel.com/svg/elven_map-0.svg
the two snippets in question are:
Code: Select all
<pattern id="MainHall" width="60px" height="60px" patternUnits="userSpaceOnUse" viewBox="0 0 60 60">
<rect class="shape" x="0" y="0" width="60" height="60" style="fill:cadetblue;stroke:steelblue;stroke-width:0.51;stroke-alignment:inner;" />
</pattern>
Code: Select all
<rect id="eMH" x="140" y="50" width="60" height="60" fill="url(#MainHall)" />