Package chunmap.example.applet

Source Code of chunmap.example.applet.AppletMap

/**
* 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);
  }
}
TOP

Related Classes of chunmap.example.applet.AppletMap

TOP
Copyright © 2018 www.massapi.com. 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.