74 lines
2.9 KiB
Java
74 lines
2.9 KiB
Java
/*
|
|
* Copyright 2016-2017 devemux86
|
|
*
|
|
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.oscim.test;
|
|
|
|
import org.oscim.gdx.GdxMapApp;
|
|
import org.oscim.layers.GroupLayer;
|
|
import org.oscim.layers.tile.buildings.BuildingLayer;
|
|
import org.oscim.layers.tile.vector.VectorTileLayer;
|
|
import org.oscim.layers.tile.vector.labeling.LabelLayer;
|
|
import org.oscim.map.Map;
|
|
import org.oscim.renderer.BitmapRenderer;
|
|
import org.oscim.renderer.GLViewport;
|
|
import org.oscim.scalebar.DefaultMapScaleBar;
|
|
import org.oscim.scalebar.ImperialUnitAdapter;
|
|
import org.oscim.scalebar.MapScaleBar;
|
|
import org.oscim.scalebar.MapScaleBarLayer;
|
|
import org.oscim.scalebar.MetricUnitAdapter;
|
|
import org.oscim.theme.VtmThemes;
|
|
import org.oscim.tiling.TileSource;
|
|
import org.oscim.tiling.source.OkHttpEngine;
|
|
import org.oscim.tiling.source.oscimap4.OSciMap4TileSource;
|
|
|
|
public class SimpleMapTest extends GdxMapApp {
|
|
|
|
@Override
|
|
public void createLayers() {
|
|
Map map = getMap();
|
|
|
|
TileSource tileSource = OSciMap4TileSource.builder()
|
|
.httpFactory(new OkHttpEngine.OkHttpFactory())
|
|
.build();
|
|
VectorTileLayer l = map.setBaseMap(tileSource);
|
|
|
|
GroupLayer groupLayer = new GroupLayer(mMap);
|
|
groupLayer.layers.add(new BuildingLayer(map, l));
|
|
groupLayer.layers.add(new LabelLayer(map, l));
|
|
map.layers().add(groupLayer);
|
|
|
|
DefaultMapScaleBar mapScaleBar = new DefaultMapScaleBar(mMap);
|
|
mapScaleBar.setScaleBarMode(DefaultMapScaleBar.ScaleBarMode.BOTH);
|
|
mapScaleBar.setDistanceUnitAdapter(MetricUnitAdapter.INSTANCE);
|
|
mapScaleBar.setSecondaryDistanceUnitAdapter(ImperialUnitAdapter.INSTANCE);
|
|
mapScaleBar.setScaleBarPosition(MapScaleBar.ScaleBarPosition.BOTTOM_LEFT);
|
|
|
|
MapScaleBarLayer mapScaleBarLayer = new MapScaleBarLayer(mMap, mapScaleBar);
|
|
BitmapRenderer renderer = mapScaleBarLayer.getRenderer();
|
|
renderer.setPosition(GLViewport.Position.BOTTOM_LEFT);
|
|
renderer.setOffset(5, 0);
|
|
map.layers().add(mapScaleBarLayer);
|
|
|
|
map.setTheme(VtmThemes.DEFAULT);
|
|
map.setMapPosition(53.075, 8.808, 1 << 17);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
GdxMapApp.init();
|
|
GdxMapApp.run(new SimpleMapTest());
|
|
}
|
|
}
|