Package de.fhpotsdam.unfolding

Examples of de.fhpotsdam.unfolding.UnfoldingMap


  UnfoldingMap map;

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

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(new Location(50.26f, 12.1f), 4);
    MapUtils.createDefaultEventDispatcher(this, map);

    ImageMarker imgMarker1 = new ImageMarker(lisbonLocation, loadImage("ui/marker.png"));
    ImageMarker imgMarker2 = new ImageMarker(veniceLocation, loadImage("ui/marker_red.png"));
View Full Code Here


  Location targetLocation = moscowLocation;

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

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

  UnfoldingMap map;

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

    map = new UnfoldingMap(this, new Google.GoogleMapProvider());

    map.zoomToLevel(3);
    map.panTo(new Location(40f, -42f));
    MapUtils.createDefaultEventDispatcher(this, map);
View Full Code Here

  UnfoldingMap map;

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

    map = new UnfoldingMap(this, "map", 50, 50, 700, 500);
    map.zoomToLevel(2);
    MapUtils.createDefaultEventDispatcher(this, map);

    List<Feature> features = GeoRSSReader.loadData(this, "data/bbc-georss-test.xml");
    List<Marker> markers = createLabeledMarkers(features);
View Full Code Here

  OverviewPlusDetailConnection connection;

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

    mapOverview = new UnfoldingMap(this, "overview", 10, 10, 585, 580);
    mapOverview.zoomToLevel(1);
    mapOverview.setZoomRange(1, 7);
    MapUtils.createDefaultEventDispatcher(this, mapOverview);

    mapDetail = new UnfoldingMap(this, "detail", 605, 10, 150, 150);
    mapDetail.setTweening(false);
    mapDetail.zoomToLevel(4);
    mapDetail.setZoomRange(4, 10);

    connection = new ConvexHullConnection(this);
View Full Code Here

  UnfoldingMap map;

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

    map = new UnfoldingMap(this);
    map.zoomAndPanTo(10, new Location(52.5f, 13.4f));

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

  boolean useColorCoding = false;

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

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

    this.init3D();

    // Data loading
View Full Code Here

  List<AnimatedParticle> animatedParticles2 = new ArrayList<AnimatedParticle>();

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

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

    this.init3D();

    for (int i = 0; i < 10; i++) {
View Full Code Here

  float targetZoom = currentZoom;

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

    map = new UnfoldingMap(this, new Microsoft.AerialProvider());
    map.zoomAndPanTo(location, (int) currentZoom);

    Ani.init(this);
  }
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, 5);

    this.init3D();
  }
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.