- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getWebMapTileServer()
方法的一些代码示例,展示了WMTSStoreInfo.getWebMapTileServer()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WMTSStoreInfo.getWebMapTileServer()
方法的具体详情如下:
包路径:org.geoserver.catalog.WMTSStoreInfo
类名称:WMTSStoreInfo
方法名:getWebMapTileServer
[英]Returns the underlying WebMapTileServer.
This method does I/O and is potentially blocking. The listener may be used to report the progress of loading the datastore and also to report any errors or warnings that occur.
[中]返回基础WebMapTileServer。
此方法不执行I/O操作,可能会造成阻塞。侦听器可用于报告加载数据存储的进度,以及报告发生的任何错误或警告。
代码示例来源:origin: geoserver/geoserver
@Override
public WebMapTileServer getWebMapTileServer(ProgressListener listener) throws IOException {
return delegate.getWebMapTileServer(listener);
}
代码示例来源:origin: geoserver/geoserver
/**
* Locates and returns a WTMS {@link Layer} based on the configuration stored in WMTSLayerInfo
*
* @param info
* @throws IOException
*/
public Layer getWMTSLayer(WMTSLayerInfo info) throws IOException {
String name = info.getName();
if (info.getNativeName() != null) {
name = info.getNativeName();
}
WMTSCapabilities caps = null;
caps = info.getStore().getWebMapTileServer(null).getCapabilities();
for (Layer layer : caps.getLayerList()) {
if (name.equals(layer.getName())) {
return layer;
}
}
throw new IOException(
"Could not find layer " + info.getName() + " in the server capabilitiles document");
}
代码示例来源:origin: org.geoserver/gs-restconfig
List<String> getAvailableLayersInternal(
String workspaceName, String storeName, boolean quietOnNotFound) {
NamespaceInfo ns = getNamespaceInternal(workspaceName);
Collection<WMTSStoreInfo> stores = getStoresInternal(ns, storeName, quietOnNotFound);
return stores.stream()
.flatMap(
store -> {
WebMapTileServer ds;
try {
ds = store.getWebMapTileServer(null);
} catch (IOException e) {
throw new RestException(
"Could not load wmts store: " + storeName,
HttpStatus.INTERNAL_SERVER_ERROR,
e);
}
final List<WMTSLayer> layerList = ds.getCapabilities().getLayerList();
return layerList
.stream()
.map(Layer::getName)
.filter(Objects::nonNull)
.filter(name -> !name.isEmpty())
.filter(name -> !layerConfigured(store, name));
})
.collect(Collectors.toList());
}
代码示例来源:origin: org.geoserver.web/gs-web-core
builder.setStore(store);
List<WMTSLayer> layers =
wmtsInfo.getWebMapTileServer(null).getCapabilities().getLayerList();
for (Layer l : layers) {
if (l.getName() == null) {
代码示例来源:origin: org.geoserver.web/gs-web-core
if (store instanceof WMTSStoreInfo) {
try {
WebMapTileServer wmts = ((WMTSStoreInfo) store).getWebMapTileServer(null);
createWMTSLayerImportContainer.setVisible(wmts != null);
} catch (IOException e) {
代码示例来源:origin: org.geoserver/gs-wms
WebMapTileServer wmts = wmtsLayer.getStore().getWebMapTileServer(null);
Layer gt2Layer = wmtsLayer.getWMTSLayer(null);
代码示例来源:origin: org.geoserver.web/gs-web-core
WebMapTileServer webMapTileServer = expandedStore.getWebMapTileServer(null);
WMTSCapabilities capabilities = webMapTileServer.getCapabilities();
List<WMTSLayer> layers = capabilities.getLayerList();
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getConnectTimeout()方法的一些代码示例,展示了WMTSStoreInfo.getConne
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.setType()方法的一些代码示例,展示了WMTSStoreInfo.setType()的具体用法。这些代
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.isUseConnectionPooling()方法的一些代码示例,展示了WMTSStoreInfo.isU
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.isEnabled()方法的一些代码示例,展示了WMTSStoreInfo.isEnabled()的具体用法
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getId()方法的一些代码示例,展示了WMTSStoreInfo.getId()的具体用法。这些代码示例主
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.setName()方法的一些代码示例,展示了WMTSStoreInfo.setName()的具体用法。这些代
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.setCapabilitiesURL()方法的一些代码示例,展示了WMTSStoreInfo.setCapa
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.setEnabled()方法的一些代码示例,展示了WMTSStoreInfo.setEnabled()的具体
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getCapabilitiesURL()方法的一些代码示例,展示了WMTSStoreInfo.getCapa
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getName()方法的一些代码示例,展示了WMTSStoreInfo.getName()的具体用法。这些代
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.setWorkspace()方法的一些代码示例,展示了WMTSStoreInfo.setWorkspace(
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getWorkspace()方法的一些代码示例,展示了WMTSStoreInfo.getWorkspace(
本文整理了Java中org.geoserver.catalog.WMTSStoreInfo.getWebMapTileServer()方法的一些代码示例,展示了WMTSStoreInfo.getWeb
我是一名优秀的程序员,十分优秀!