Examples of MercatorProjection


Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

*/
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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

*/
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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

*/
public class AcetateProvider {
  public static abstract class GenericAcetateProvider extends AbstractMapTileUrlProvider {

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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

*/
public class OpenWeatherProvider {
  public static abstract class GenericOpenWeatherMapProvider extends AbstractMapTileUrlProvider {

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

Examples of de.fhpotsdam.unfolding.geo.MercatorProjection

  private String carto = null;
  public static Logger log = Logger.getLogger(CartoDBProvider.class);
  public AbstractMapProvider masterProvider = null;

  public CartoDBProvider(String account, String dbTable) {
    super(new MercatorProjection(26, new Transformation(1.068070779e7, 0.0f, 3.355443185e7, 0.0,
        -1.068070890e7, 3.355443057e7)));
    this.subdomain = account;
    this.table = dbTable;
  }
View Full Code Here
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.