Package org.locationtech.udig.catalog.internal.wmt.wmtsource.ww

Examples of org.locationtech.udig.catalog.internal.wmt.wmtsource.ww.LayerSet


   
    @Test
    public void testLayerSetConstruct() throws Exception {
        Element rootElement = QuadTileSetTest.getRootElement();
       
        LayerSet layerSet = new LayerSet(rootElement, "");
       
        assertEquals("ZoomIt! Data", layerSet.getName());
        assertEquals(5, layerSet.getChildLayerSets().size());
        assertEquals("GLOBAL", layerSet.getChildLayerSets().get(0).getName());
        assertEquals("-ZoomIt!%20Data-GLOBAL", layerSet.getChildLayerSets().get(0).getId());
        assertEquals("Bathymetry (30 arcsec)",
                layerSet.getChildLayerSets().get(0).getQuadTileSets().get(0).getName());
       
    }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.catalog.internal.wmt.wmtsource.ww.LayerSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.