/**
* Copyright (c) 2009-2011, chunquedong(YangJiandong)
*
* This file is part of ChunMap project
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE(Version >=3)
*
* History:
* 2010-05-05 Jed Young Creation
*/
package chunmap.example.applet;
import chunmap.app.MapCtrl;
import chunmap.example.BaseAppletMap;
import chunmap.raster.gmap.GMLayer;
import chunmap.view.layer.Layer;
public class AppletMap extends BaseAppletMap {
private static final long serialVersionUID = -1784496267356795823L;
@Override
protected void addLayer(MapCtrl map) {
//String url="http://localhost:8080/chunmapService/test?SERVICE=GoogleMap";
Layer layer = new GMLayer();
map.getLayerCollection().add(layer);
}
}