Package de.fhpotsdam.unfolding.geo

Examples of de.fhpotsdam.unfolding.geo.Transformation


  public static final String HYBRID_VERSION = "2.2";

  public static abstract class YahooProvider extends AbstractMapTileUrlProvider {

    public YahooProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here


public class Google {
 
  public static abstract class GoogleProvider extends AbstractMapTileUrlProvider {

    public GoogleProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

*/
public class EsriProvider {
  public static abstract class GenericEsriProvider extends AbstractMapTileUrlProvider {

    public GenericEsriProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

*/
public class OpenStreetMap {
  public static abstract class GenericOpenStreetMapProvider extends AbstractMapTileUrlProvider {

    public GenericOpenStreetMapProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

*/
public class MapQuestProvider {
  public static abstract class GenericMapQuestProvider extends AbstractMapTileUrlProvider {

    public GenericMapQuestProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

 
  private static final String JDBC_PREFIX = "jdbc:sqlite:";
  protected String jdbcConnectionString;

  public MBTilesMapProvider() {
    super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
        -1.068070890e7, 3.355443057e7)));
  }
View Full Code Here

public class Microsoft {

  public static abstract class MicrosoftProvider extends AbstractMapTileUrlProvider {

    public MicrosoftProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0, -1.068070890e7,
          3.355443057e7)));
    }
View Full Code Here

*/
public class OpenMapSurferProvider {
  public static abstract class GenericOpenMapSurferProvider extends AbstractMapTileUrlProvider {

    public GenericOpenMapSurferProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

public class GeoMapApp {

  public static abstract class GeoMapAppProvider extends AbstractMapTileUrlProvider {

    public GeoMapAppProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0,
          3.355443185e7, 0.0, -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

*/
public class ThunderforestProvider {
  public static abstract class GenericThunderforestProvider extends AbstractMapTileUrlProvider {

    public GenericThunderforestProvider() {
      super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0, 3.355443185e7, 0.0,
          -1.068070890e7, 3.355443057e7)));
    }
View Full Code Here

TOP

Related Classes of de.fhpotsdam.unfolding.geo.Transformation

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.