11 lines
310 B
Java
11 lines
310 B
Java
package com.google.maps.android.data;
|
|
|
|
import com.google.android.gms.maps.model.LatLng;
|
|
import java.util.List;
|
|
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public interface DataPolygon<T> extends Geometry {
|
|
List<List<LatLng>> getInnerBoundaryCoordinates();
|
|
|
|
List<LatLng> getOuterBoundaryCoordinates();
|
|
} |