src.gov.nasa.worldwind.layers.Earth.BMNGWMSLayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind Show documentation
Show all versions of worldwind Show documentation
World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.
/*
* Copyright (C) 2012 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwind.layers.Earth;
import gov.nasa.worldwind.util.*;
import gov.nasa.worldwind.wms.WMSTiledImageLayer;
import org.w3c.dom.Document;
/**
* @author tag
* @version $Id: BMNGWMSLayer.java 1958 2014-04-24 19:25:37Z tgaskins $
*/
public class BMNGWMSLayer extends WMSTiledImageLayer
{
public BMNGWMSLayer()
{
super(getConfigurationDocument(), null);
}
protected static Document getConfigurationDocument()
{
return WWXML.openDocumentFile("config/Earth/BMNGWMSLayer2.xml", null);
}
}