planetiler/src/main/java/com/onthegomap/flatmap/RenderedFeature.java

21 wiersze
376 B
Java

package com.onthegomap.flatmap;
import com.onthegomap.flatmap.geo.TileCoord;
import java.util.Optional;
public record RenderedFeature(
TileCoord tile,
VectorTileEncoder.Feature vectorTileFeature,
int zOrder,
Optional<Group> group
) {
public RenderedFeature {
assert vectorTileFeature != null;
}
public static record Group(long group, int limit) {
}
}