mirror of
https://github.com/cfpwastaken/planetiler-openmaptiles.git
synced 2026-02-04 04:21:08 +00:00
20 lines
598 B
Java
20 lines
598 B
Java
package org.openmaptiles.addons;
|
|
|
|
import com.onthegomap.planetiler.config.PlanetilerConfig;
|
|
import com.onthegomap.planetiler.stats.Stats;
|
|
import com.onthegomap.planetiler.util.Translations;
|
|
import java.util.List;
|
|
import org.openmaptiles.Layer;
|
|
|
|
/**
|
|
* Registry of extra custom layers that you can add to the openmaptiles schema.
|
|
*/
|
|
public class ExtraLayers {
|
|
|
|
public static List<Layer> create(Translations translations, PlanetilerConfig config, Stats stats) {
|
|
return List.of(
|
|
// Create classes that extend Layer interface in the addons package, then instantiate them here
|
|
);
|
|
}
|
|
}
|