/webportal/src/main/java/au/org/emii/portal/wms/OpenStreetMapSupport.java
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 7package au.org.emii.portal.wms; 8 9/** 10 * 11 * @author brendon 12 */ 13public class OpenStreetMapSupport { 14 private String layerName; 15 16 public String getLayerName() { 17 return layerName; 18 } 19 20 public void setLayerName(String layerName) { 21 this.layerName = layerName; 22 } 23 24}