Changeset 2796 in osm for applications/editors
- Timestamp:
- 2007-05-06T19:57:08+02:00 (18 years ago)
- Location:
- applications/editors/josm/plugins/mappaint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mappaint/src/mappaint/MapPaintVisitor.java
r2787 r2796 99 99 drawSegment(ls, w.selected ? getPreferencesColor("selected", Color.YELLOW) : colour,Main.pref.getBoolean("draw.segment.direction"), width,true); 100 100 else 101 if (realWidth > 0 && Main.pref.getBoolean("mappaint.useRealWith",false)){ 101 if (realWidth > 0 && Main.pref.getBoolean("mappaint.useRealWidth",false)){ 102 102 int tmpWidth = (int) (100 / (float) (circum / realWidth)); 103 103 if (tmpWidth > width) width = tmpWidth; -
applications/editors/josm/plugins/mappaint/styles/standard/elemstyles.xml
r2787 r2796 1 <!-- 2 a little help: 3 1. every rule starts with <rule> and ends with </rule> 4 2. every rule needs a condition 5 3. line attributes 6 - width absolute width in pixel in every zoom level 7 - realwidth relative width which will be scaled in meters, integer 8 - colour 9 4. area attributes 10 - colour 11 5. amenity attributes 12 - icon path to icon , relative from where this file is 13 --> 14 1 15 <rules> 2 16 <!-- highway tags -->
Note:
See TracChangeset
for help on using the changeset viewer.