- now there is a clean separation between TileSource type and TileDataSource(worker instances)
72 lines
2.1 KiB
Java
72 lines
2.1 KiB
Java
/*
|
|
* Copyright 2010, 2011, 2012 mapsforge.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.tilesource.mapfile.header;
|
|
|
|
import org.oscim.core.Tag;
|
|
|
|
/**
|
|
* Contains the immutable metadata of a map file.
|
|
*
|
|
*/
|
|
public class MapFileInfo extends org.oscim.tilesource.MapInfo {
|
|
|
|
/**
|
|
* True if the map file includes debug information, false otherwise.
|
|
*/
|
|
public final boolean debugFile;
|
|
|
|
/**
|
|
* The number of sub-files in the map file.
|
|
*/
|
|
public final byte numberOfSubFiles;
|
|
|
|
/**
|
|
* The POI tags.
|
|
*/
|
|
public final Tag[] poiTags;
|
|
|
|
/**
|
|
* The way tags.
|
|
*/
|
|
public final Tag[] wayTags;
|
|
|
|
/**
|
|
* The size of the tiles in pixels.
|
|
*/
|
|
public final int tilePixelSize;
|
|
|
|
MapFileInfo(MapFileInfoBuilder mapFileInfoBuilder) {
|
|
super(mapFileInfoBuilder.boundingBox,
|
|
mapFileInfoBuilder.optionalFields.startZoomLevel,
|
|
mapFileInfoBuilder.optionalFields.startPosition,
|
|
mapFileInfoBuilder.projectionName,
|
|
mapFileInfoBuilder.mapDate,
|
|
mapFileInfoBuilder.fileSize,
|
|
mapFileInfoBuilder.fileVersion,
|
|
mapFileInfoBuilder.optionalFields.languagePreference,
|
|
mapFileInfoBuilder.optionalFields.comment,
|
|
mapFileInfoBuilder.optionalFields.createdBy,
|
|
mapFileInfoBuilder.zoomLevel);
|
|
|
|
debugFile = mapFileInfoBuilder.optionalFields.isDebugFile;
|
|
|
|
numberOfSubFiles = mapFileInfoBuilder.numberOfSubFiles;
|
|
poiTags = mapFileInfoBuilder.poiTags;
|
|
|
|
tilePixelSize = mapFileInfoBuilder.tilePixelSize;
|
|
wayTags = mapFileInfoBuilder.wayTags;
|
|
}
|
|
}
|