Package chunmap.example.googlemap

Source Code of chunmap.example.googlemap.StaticGMTest

/**
* 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.googlemap;

import chunmap.app.MapCtrl;
import chunmap.example.BaseMap;
import chunmap.raster.gmap.StaticGMLayer;
import chunmap.view.layer.Layer;

public class StaticGMTest  extends BaseMap{
  public static void main(String[] args) {

    StaticGMTest me = new StaticGMTest();
    me.init();
  }
  @Override
  protected void addLayer(MapCtrl map) {
    Layer layer = new StaticGMLayer();
    map.getLayerCollection().add(layer);
  }
}
TOP

Related Classes of chunmap.example.googlemap.StaticGMTest

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.