Uses of Class
com.cercalia.sdk.model.staticmaps.StaticMapResult
Packages that use StaticMapResult
Package
Description
Static maps and imagery data models.
Core services for interacting with Cercalia APIs.
-
Uses of StaticMapResult in com.cercalia.sdk.model.staticmaps
Methods in com.cercalia.sdk.model.staticmaps that return StaticMapResult -
Uses of StaticMapResult in com.cercalia.sdk.services
Methods in com.cercalia.sdk.services that return StaticMapResultModifier and TypeMethodDescription@NotNull StaticMapResultStaticMapsService.generateCityMap(@NotNull String cityName, @NotNull String countryCode) Generate a map centered on a city with default dimensions.@NotNull StaticMapResultStaticMapsService.generateCityMap(@NotNull String cityName, @NotNull String countryCode, @Nullable Integer width, @Nullable Integer height) Generate a map centered on a city with a label.@NotNull StaticMapResultStaticMapsService.generateMap(@NotNull StaticMapOptions options) Generate a static map with optional markers and shapes.@NotNull StaticMapResultStaticMapsService.generateMapAsImage(@NotNull StaticMapOptions options) Generate map and return image data directly.@NotNull StaticMapResultStaticMapsService.generateMapWithCircle(@NotNull Coordinate center, int radius) Generate a map with a circle shape using default style.@NotNull StaticMapResultStaticMapsService.generateMapWithCircle(@NotNull Coordinate center, int radius, @Nullable StaticMapCircle circle, @Nullable Integer width, @Nullable Integer height) Generate a map with a circle shape.@NotNull StaticMapResultStaticMapsService.generateMapWithLabel(@NotNull Coordinate center, @NotNull String text, @Nullable Integer width, @Nullable Integer height) Generate a map with a label at a specific position.@NotNull StaticMapResultStaticMapsService.generateMapWithLine(@NotNull Coordinate start, @NotNull Coordinate end, @Nullable StaticMapLine line, @Nullable Integer width, @Nullable Integer height) Generate a map with a line between two points.@NotNull StaticMapResultStaticMapsService.generateMapWithMarkers(@NotNull List<StaticMapMarker> markers, @Nullable Integer width, @Nullable Integer height) Generate a map with markers.@NotNull StaticMapResultStaticMapsService.generateMapWithPolyline(@NotNull List<Coordinate> coordinates, @Nullable StaticMapPolyline polyline, @Nullable Integer width, @Nullable Integer height) Generate a map with a polyline.@NotNull StaticMapResultStaticMapsService.generateMapWithRectangle(@NotNull Coordinate upperLeft, @NotNull Coordinate lowerRight, @Nullable StaticMapRectangle rectangle, @Nullable String cityName, @Nullable Integer width, @Nullable Integer height) Generate a map with a rectangle shape.@NotNull StaticMapResultStaticMapsService.generateMapWithSector(@NotNull Coordinate center, int innerRadius, int outerRadius, int startAngle, int endAngle, @Nullable Integer width, @Nullable Integer height) Generate a map with a sector shape.Methods in com.cercalia.sdk.services that return types with arguments of type StaticMapResultModifier and TypeMethodDescription@NotNull CompletableFuture<StaticMapResult>StaticMapsService.generateMapAsync(@NotNull StaticMapOptions options) Generate a static map asynchronously.