当前位置: 首页>>代码示例>>Java>>正文


Java StyleLayer类代码示例

本文整理汇总了Java中org.geotools.map.StyleLayer的典型用法代码示例。如果您正苦于以下问题:Java StyleLayer类的具体用法?Java StyleLayer怎么用?Java StyleLayer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


StyleLayer类属于org.geotools.map包,在下文中一共展示了StyleLayer类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import org.geotools.map.StyleLayer; //导入依赖的package包/类
@Override
public void init(final IEditorSite site, final IEditorInput input) throws PartInitException {
	setSite(site);
	final FileEditorInput fi = (FileEditorInput) input;
	file = fi.getFile();
	final IPath path = fi.getPath();
	final File f = path.makeAbsolute().toFile();
	try {
		pathStr = f.getAbsolutePath();
		final ShapefileDataStore store = new ShapefileDataStore(f.toURI().toURL());
		content = new MapContent();
		featureSource = store.getFeatureSource();
		style = Utils.createStyle(f, featureSource);
		layer = new FeatureLayer(featureSource, style);
		mode = determineMode(featureSource.getSchema(), "Polygon");
		final List<FeatureTypeStyle> ftsList = style.featureTypeStyles();
		if (ftsList.size() > 0) {
			fts = ftsList.get(0);
		} else {
			fts = null;
		}
		if (fts != null) {
			this.setFillColor(PreferencesHelper.SHAPEFILE_VIEWER_FILL.getValue(), mode, fts);
			this.setStrokeColor(PreferencesHelper.SHAPEFILE_VIEWER_LINE_COLOR.getValue(), mode, fts);
			((StyleLayer) layer).setStyle(style);
		}
		content.addLayer(layer);
	} catch (final IOException e) {
		System.out.println("Unable to view file " + path);
	}
	this.setPartName(path.lastSegment());
	setInput(input);
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:34,代码来源:ShapeFileViewer.java

示例2: setColor

import org.geotools.map.StyleLayer; //导入依赖的package包/类
/**
 * Method setColor()
 * 
 * @see ummisco.gama.ui.views.toolbar.IToolbarDecoratedView.Colorizable#setColor(int,
 *      ummisco.gama.ui.resources.GamaColors.GamaUIColor)
 */
@Override
public void setColor(final int index, final GamaUIColor gc) {
	final RGB rgb = gc.getRGB();
	final Color c = new Color(rgb.red, rgb.green, rgb.blue);
	if (index == 0) {
		setStrokeColor(c, mode, fts);
	} else {
		setFillColor(c, mode, fts);
	}
	((StyleLayer) layer).setStyle(style);
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:18,代码来源:ShapeFileViewer.java

示例3: doSetStyle

import org.geotools.map.StyleLayer; //导入依赖的package包/类
/**
 * Show a style dialog to create a new Style for the layer
 *
 * @param layer
 *            the layer to be styled
 * @throws IOException
 */
private void doSetStyle(final Layer layer) throws IOException {
	if (layer instanceof StyleLayer) {
		final StyleLayer styleLayer = (StyleLayer) layer;
		final Style style = SimpleStyleConfigurator.showDialog(this.getTable().getShell(), layer);
		if (style != null) {
			styleLayer.setStyle(style);
		}
	}
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:17,代码来源:MaplayerTableViewer.java

示例4: setLayer

import org.geotools.map.StyleLayer; //导入依赖的package包/类
public void setLayer(StyleLayer layer) {
this.layer = layer;

   }
 
开发者ID:ianturton,项目名称:ShapefileViewer,代码行数:5,代码来源:JLegendPanel.java


注:本文中的org.geotools.map.StyleLayer类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。