summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/offline/OfflineRegionDefinition.java
blob: 18d662a2861d7a502d32b03e3af92b389c1608ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mapbox.mapboxsdk.offline;

import com.mapbox.mapboxsdk.geometry.LatLngBounds;

/**
 * This is the interface that all Offline Region definitions have to implement.
 * <p>
 * For the present, a tile pyramid is the only type of offline region.
 */
public interface OfflineRegionDefinition {

  LatLngBounds getBounds();

}