Changeset 11755 in josm
- Timestamp:
- 2017-03-20T23:42:16+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r11751 r11755 1019 1019 //TODO: Ignore areas that are out of bounds. 1020 1020 PositionForAreaStrategy position = text.getLabelPositionStrategy(); 1021 MapViewPositionAndRotation center = text.getLabelPositionStrategy().findLabelPlacement(path, nb);1021 MapViewPositionAndRotation center = position.findLabelPlacement(path, nb); 1022 1022 if (center != null) { 1023 1023 displayText(osm, text, name, nb, center); -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/placement/PositionForAreaStrategy.java
r11754 r11755 44 44 default List<GlyphVector> generateGlyphVectors( 45 45 MapViewPath path, Rectangle2D nb, List<GlyphVector> gvs, boolean isDoubleTranslationBug) { 46 throw new UnsupportedOperationException("Single glyph trans ofrmation is not supported by this implementation");46 throw new UnsupportedOperationException("Single glyph transformation is not supported by this implementation"); 47 47 } 48 48
Note:
See TracChangeset
for help on using the changeset viewer.