Interface PolygonTileSource.LoadResultHandler
Package com.here.sdk.mapview.datasource
Interface PolygonTileSource.LoadResultHandler
-
- Enclosing interface:
- PolygonTileSource
public static interface PolygonTileSource.LoadResultHandlerResult handler of a load tile request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfailed(TileKey tileKey)Called upon failed load tile request.voidloaded(TileKey tileKey, java.util.List<PolygonData> data, TileSource.TileMetadata metadata)Called upon successful load tile request.
-
-
-
Method Detail
-
loaded
void loaded(@NonNull TileKey tileKey, @NonNull java.util.List<PolygonData> data, @NonNull TileSource.TileMetadata metadata)Called upon successful load tile request.
- Parameters:
tileKey-Loaded tile key.
data-Loaded tile data.
metadata-Loaded tile metadata.
-
failed
void failed(@NonNull TileKey tileKey)Called upon failed load tile request.
- Parameters:
tileKey-Failed tile key.
-
-