本文整理汇总了Java中org.geomajas.configuration.FontStyleInfo.setOpacity方法的典型用法代码示例。如果您正苦于以下问题:Java FontStyleInfo.setOpacity方法的具体用法?Java FontStyleInfo.setOpacity怎么用?Java FontStyleInfo.setOpacity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.geomajas.configuration.FontStyleInfo
的用法示例。
在下文中一共展示了FontStyleInfo.setOpacity方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createRandomLabelStyle
import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private LabelStyleInfo createRandomLabelStyle(String attributeName) {
LabelStyleInfo labelStyle = new LabelStyleInfo();
labelStyle.setLabelAttributeName(attributeName);
FontStyleInfo fontStyle = new FontStyleInfo();
fontStyle.setColor("#000000");
fontStyle.setFamily("Verdana");
fontStyle.setOpacity(1F);
fontStyle.setSize(8);
labelStyle.setFontStyle(fontStyle);
FeatureStyleInfo backgroundStyle = new FeatureStyleInfo();
backgroundStyle.setFillColor("#FFFFFF");
backgroundStyle.setFillOpacity(0.7F);
backgroundStyle.setStrokeColor("#000099");
backgroundStyle.setStrokeOpacity(1F);
backgroundStyle.setStrokeWidth(1);
labelStyle.setBackgroundStyle(backgroundStyle);
return labelStyle;
}
示例2: createRandomLabelStyle
import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private LabelStyleInfo createRandomLabelStyle(String attributeName) {
LabelStyleInfo style = new LabelStyleInfo();
style.setBackgroundStyle(createRandomPolygonStyle());
FontStyleInfo fontStyle = new FontStyleInfo();
fontStyle.setColor(style.getBackgroundStyle().getStrokeColor());
fontStyle.setFamily("Verdana");
fontStyle.setOpacity(1F);
fontStyle.setSize(8);
fontStyle.setWeight("normal");
fontStyle.setStyle("normal");
style.setFontStyle(fontStyle);
style.setLabelAttributeName(attributeName);
return style;
}
示例3: createTextSymbolizer
import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private TextSymbolizerInfo createTextSymbolizer(FontStyle style) {
FontStyleInfo font = new FontStyleInfo();
font.setColor(style.getFillColor());
font.setFamily(style.getFontFamily());
font.setSize(style.getFontSize());
font.setStyle(style.getFontStyle());
font.setOpacity(1f);
font.setWeight(style.getFontWeight());
return StyleUtil.createSymbolizer(font);
}
示例4: convertFontFill
import org.geomajas.configuration.FontStyleInfo; //导入方法依赖的package包/类
private void convertFontFill(FontStyleInfo fontStyle, FillInfo fill) throws LayerException {
if (fill != null) {
Map<String, String> cssMap = getLiteralMap(fill.getCssParameterList());
fontStyle.setColor(cssMap.get(CSS_FILL));
if (cssMap.containsKey(CSS_FILL_OPACITY)) {
fontStyle.setOpacity(parseFloat(cssMap, CSS_FILL_OPACITY));
}
}
}