planetiler/planetiler-custommap/src/main/java/com/onthegomap/planetiler/custommap/configschema/ZoomOverride.java

11 wiersze
284 B
Java

package com.onthegomap.planetiler.custommap.configschema;
/**
* Configuration item that instructs the renderer to override the default zoom range for features which contain specific
* tag combinations.
*/
public record ZoomOverride(
Integer min,
Integer max,
Object tag) {}