org.oscim.tiling.source.mvt.MapilionMvtTileSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtm-mvt Show documentation
Show all versions of vtm-mvt Show documentation
OpenGL vector map library - running on Android, iOS, Desktop and browser.
The newest version!
/*
* Copyright 2018 devemux86
*
* This program is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with
* this program. If not, see .
*/
package org.oscim.tiling.source.mvt;
import org.oscim.tiling.ITileDataSource;
import org.oscim.tiling.OverzoomTileDataSource;
import org.oscim.tiling.source.UrlTileDataSource;
import org.oscim.tiling.source.UrlTileSource;
public class MapilionMvtTileSource extends UrlTileSource {
private static final String DEFAULT_URL = "https://tiles.mapilion.com/data/v3";
private static final String DEFAULT_PATH = "/{Z}/{X}/{Y}.pbf";
public static class Builder> extends UrlTileSource.Builder {
private String locale = "";
public Builder() {
super(DEFAULT_URL, DEFAULT_PATH);
overZoom(14);
}
public T locale(String locale) {
this.locale = locale;
return self();
}
@Override
public MapilionMvtTileSource build() {
return new MapilionMvtTileSource(this);
}
}
@SuppressWarnings("rawtypes")
public static Builder> builder() {
return new Builder();
}
private final String locale;
public MapilionMvtTileSource(Builder> builder) {
super(builder);
this.locale = builder.locale;
}
public MapilionMvtTileSource() {
this(builder());
}
public MapilionMvtTileSource(String urlString) {
this(builder().url(urlString));
}
@Override
public ITileDataSource getDataSource() {
return new OverzoomTileDataSource(new UrlTileDataSource(this, new TileDecoder(locale), getHttpEngine()), mOverZoom);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy