Package de.fhpotsdam.unfolding

Examples of de.fhpotsdam.unfolding.UnfoldingMap


    // "#hymet_stations { marker-fill:#FF3300; marker-width:20; marker-line-color:#ffffff; marker-line-width:1; marker-opacity:.5; marker-line-opacity:1; marker-placement:point; marker-type:ellipse; marker-allow-overlap:true; }";
    // cartodb.setStyle(style);

    // map1 = new Map(this, "map1", 0, 0, width, height, true, false, );
    // map1.setTweening(false);
    map = new UnfoldingMap(this, "map", 0, 0, width, height, true, false, cartodb);
    map.setTweening(false);
    MapUtils.createDefaultEventDispatcher(this, map);
  }
View Full Code Here


  List<Feature> features;

  public void setup() {
    size(1024, 768, GLConstants.GLGRAPHICS);

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(berlinLocation, 3);

    this.init3D();

    // Data loading
View Full Code Here

  protected GLU glu;

  public void setup() {
    size(1024, 768, GLConstants.GLGRAPHICS);

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(berlinLocation, 10);
    // MapUtils.createDefaultEventDispatcher(this, map);

    SimplePointMarker marker = new SimplePointMarker(berlinLocation);
    map.addMarker(marker);
View Full Code Here

  protected Location warsawLocation = new Location(52.2166f, 21.03333f);

  public void setup() {
    size(1024, 768, GLConstants.GLGRAPHICS);

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(berlinLocation, 3);

    this.init3D();
  }
View Full Code Here

  public void setup() {
    size(900, 600, OPENGL);
    smooth();

    map = new UnfoldingMap(this);
    map.zoomToLevel(2);
    MapUtils.createMouseEventDispatcher(this, map);

    print("Loading earthquakes from web feed ... ");
    List<Feature> features = GeoRSSReader.loadDataGeoRSS(this, earthquakesURL);
View Full Code Here

  UnfoldingMap map;

  public void setup() {
    size(800, 600, P2D);

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(10, new Location(52.5f, 13.4f));
    MapUtils.createDefaultEventDispatcher(this, map);
  }
View Full Code Here

  UnfoldingMap map;

  public void setup() {
    size(800, 600, OPENGL);

    map = new UnfoldingMap(this);
    MapUtils.createDefaultEventDispatcher(this, map);
  }
View Full Code Here

  public void setup() {
    size(800, 600, OPENGL);
    smooth();

    map = new UnfoldingMap(this);
    map.zoomToLevel(2);
    MapUtils.createDefaultEventDispatcher(this, map);

    List<Feature> features = GeoRSSReader.loadDataGeoRSS(this, earthquakesURL);
    markers = MapUtils.createSimpleMarkers(features);
View Full Code Here

  Location startLocation = new Location(52.49f, 13.44f);

  public void setup() {
    size(800, 600, OPENGL);

    map = new UnfoldingMap(this);
    MapUtils.createDefaultEventDispatcher(this, map);
    map.zoomAndPanTo(startLocation, 13);

    List<Feature> features = GPXReader.loadData(this, "data/bike-tour.gpx");
    List<Marker> markers = MapUtils.createSimpleMarkers(features);
View Full Code Here

  float maxPanningDistance = 30;

  public void setup() {
    size(800, 600, OPENGL);

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(new Location(centerLocation), 12);
    map.setPanningRestriction(centerLocation, maxPanningDistance);
    map.setZoomRange(12, 15);

    MapUtils.createDefaultEventDispatcher(this, map);
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.UnfoldingMap

Copyright © 2018 www.massapicom. 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.