planetiler/core/src/main/java/com/onthegomap/flatmap/BoundsProvider.java

12 wiersze
245 B
Java

package com.onthegomap.flatmap;
import com.onthegomap.flatmap.geo.GeoUtils;
import org.locationtech.jts.geom.Envelope;
public interface BoundsProvider {
BoundsProvider WORLD = () -> GeoUtils.WORLD_LAT_LON_BOUNDS;
Envelope getBounds();
}