22 lines
308 B
Java
22 lines
308 B
Java
package com.c3gis.spatial.entity;
|
|
|
|
import org.geotools.data.FeatureSource;
|
|
import org.geotools.map.FeatureLayer;
|
|
import org.geotools.styling.Style;
|
|
|
|
public class C3Layer extends FeatureLayer {
|
|
public C3Layer(FeatureSource featureSource,Style style){
|
|
super(featureSource,style);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|