/webportal/src/main/java/au/org/emii/portal/wms/OpenStreetMapSupport.java

http://alageospatialportal.googlecode.com/ · Java · 24 lines · 10 code · 5 blank · 9 comment · 0 complexity · b170caddf635fcf42d85e5319832ee4d MD5 · raw file

  1. /*
  2. * javascript to add map
  3. *
  4. * layer = new OpenLayers.Layer.OSM( "Simple OSM Map");
  5. */
  6. package au.org.emii.portal.wms;
  7. /**
  8. *
  9. * @author brendon
  10. */
  11. public class OpenStreetMapSupport {
  12. private String layerName;
  13. public String getLayerName() {
  14. return layerName;
  15. }
  16. public void setLayerName(String layerName) {
  17. this.layerName = layerName;
  18. }
  19. }