Search in sources :

Example 1 with WMSService

use of gov.usgs.cida.coastalhazards.util.ogc.WMSService in project coastal-hazards by USGS-CIDA.

the class Item method fetchWmsService.

/**
 * Get the WMSService to display from the services
 *
 * @return
 */
public WMSService fetchWmsService() {
    WMSService wmsService = null;
    OGCService ogc = fetchOgcService(ServiceType.proxy_wms);
    if (ogc instanceof WMSService) {
        wmsService = (WMSService) ogc;
    }
    return wmsService;
}
Also used : WMSService(gov.usgs.cida.coastalhazards.util.ogc.WMSService) OGCService(gov.usgs.cida.coastalhazards.util.ogc.OGCService)

Aggregations

OGCService (gov.usgs.cida.coastalhazards.util.ogc.OGCService)1 WMSService (gov.usgs.cida.coastalhazards.util.ogc.WMSService)1