本文整理汇总了Java中org.gwtopenmaps.openlayers.client.layer.WMSOptions.setIsBaseLayer方法的典型用法代码示例。如果您正苦于以下问题:Java WMSOptions.setIsBaseLayer方法的具体用法?Java WMSOptions.setIsBaseLayer怎么用?Java WMSOptions.setIsBaseLayer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.gwtopenmaps.openlayers.client.layer.WMSOptions
的用法示例。
在下文中一共展示了WMSOptions.setIsBaseLayer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLayer
import org.gwtopenmaps.openlayers.client.layer.WMSOptions; //导入方法依赖的package包/类
@Override
public Layer getLayer() {
WMSParams wmsParams = new WMSParams();
wmsParams.setFormat(format);
wmsParams.setLayers(layerName);
wmsParams.setTransparent(true);
WMSOptions wmsLayerParams = new WMSOptions();
wmsLayerParams.setProjection(epsg);
wmsLayerParams.setTransitionEffect(TransitionEffect.RESIZE);
wmsLayerParams.setDisplayOutsideMaxExtent(true);
wmsLayerParams.setNumZoomLevels(GeoMapInitializer.MAX_NUM_ZOOM_LEVEL);
wmsLayerParams.setIsBaseLayer(true);
String attribution = getAttribution();
if(attribution != null) {
wmsLayerParams.setAttribution(attribution);
}
WMS wmsLayer = new WMS(getName(), url, wmsParams, wmsLayerParams);
wmsLayer.setIsBaseLayer(false);
return wmsLayer;
}
示例2: initializeWMSLayer
import org.gwtopenmaps.openlayers.client.layer.WMSOptions; //导入方法依赖的package包/类
private WMS initializeWMSLayer(String url) {
PropertiesManager properties = getPropertiesManager();
defaultMapOptions.setProjection(DISPLAY_PROJECTION);
currentMapProjection = DISPLAY_PROJECTION;
String format = properties.getParameterAsString("wmsFormat");
String styles = properties.getParameterAsString("wmsStyles");
String layer = properties.getParameterAsString("wmsLayerName");
String bgColor = properties.getParameterAsString("wmsBGColor");
String isTransparent = properties.getParameterAsString("wmsIsTransparent");
WMSParams wmsParameters = new WMSParams();
wmsParameters.setFormat(format);
wmsParameters.setLayers(layer);
wmsParameters.setStyles(styles);
wmsParameters.setIsTransparent(new Boolean(isTransparent));
wmsParameters.getJSObject().setProperty("BGCOLOR", bgColor);
WMSOptions wmsOptions = new WMSOptions();
wmsOptions.setProjection(spatialReference);
wmsOptions.setDisplayInLayerSwitcher(true);
wmsOptions.setIsBaseLayer(true);
return new WMS(layer, url, wmsParameters, wmsOptions);
}