9 |
* @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany) |
* @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany) |
10 |
* @version 1.0 |
* @version 1.0 |
11 |
*/ |
*/ |
12 |
public class StyledMapStyle<E> { |
public class StyledLayerStyle<E> { |
13 |
/** Holds the Geotools {@link Style} for the geo object visualisation. */ |
/** Holds the Geotools {@link Style} for the geo object visualisation. */ |
14 |
protected Style geoObjectStyle = null; |
protected Style geoObjectStyle = null; |
15 |
/** Holds the additional meta data for object visualisation (for example |
/** Holds the additional meta data for object visualisation (for example |
17 |
protected E metaData = null; |
protected E metaData = null; |
18 |
|
|
19 |
/** |
/** |
20 |
* Creates a new style for a {@link StyledMapInterface}. |
* Creates a new style for a {@link StyledLayerInterface}. |
21 |
* @param style Style |
* @param style Style |
22 |
* @param metaData E |
* @param metaData E |
23 |
*/ |
*/ |
24 |
public StyledMapStyle(Style style, E metaData) { |
public StyledLayerStyle(Style style, E metaData) { |
25 |
setGeoObjectStyle(style); |
setGeoObjectStyle(style); |
26 |
setMetaData(metaData); |
setMetaData(metaData); |
27 |
} |
} |