Skip to content

Latest commit

 

History

History
83 lines (71 loc) · 7.44 KB

File metadata and controls

83 lines (71 loc) · 7.44 KB

Compose API Coverage Checklist

This document tracks the coverage of the Maps 3D SDK APIs in the experimental Compose wrapper.

Warning

This implementation is a Work In Progress (WIP) experiment and serves as a reference implementation. It is not intended for production use.

Coverage Status

Feature / Class Status Reference / Notes
Map3DOptions Supported Passed to GoogleMap3D in GoogleMap3D.kt:L69.
OnCameraAnimationEndListener Supported via Native Used in sample extensions, not exposed as parameter.
OnCameraChangedListener Supported Exposed as onCameraChanged in GoogleMap3D in GoogleMap3D.kt:L73.
OnFirstSceneListener Not Supported Not yet exposed.
OnMap3DClickListener Supported Exposed as onMapClick in GoogleMap3D.
OnMap3DViewReadyCallback Handled Internally Used in GoogleMap3D.kt:L84 to initialize.
OnMarkerClickListener Handled Internally Exposed as onClick in MarkerConfig.
OnModelClickListener Handled Internally Exposed as onClick in ModelConfig.
OnPlaceClickListener Supported Exposed as onPlaceClick in GoogleMap3D.
OnPolygonClickListener Handled Internally Exposed as onClick in PolygonConfig.
OnPolylineClickListener Handled Internally Exposed as onClick in PolylineConfig.
AltitudeMode Supported Defined in DataModels.kt.
Camera Supported Hoisted in GoogleMap3D GoogleMap3D.kt:L60.
CameraRestriction Supported Passed to GoogleMap3D GoogleMap3D.kt:L67.
CollisionBehavior Supported Used in MarkerConfig in DataModels.kt.
FlyAround / FlyTo Supported via Native Used in samples via native instance, not declarative.
Glyph Supported Via GlyphConfig in DataModels.kt.
Hole Supported Used in PolygonConfig in Map3DState.kt.
ImageView Handled Internally Used for Popover content rendering.
Marker / MarkerOptions Supported Via MarkerConfig in DataModels.kt:L35.
Model / ModelOptions Supported Via ModelConfig in DataModels.kt:L93.
Orientation Supported Used in ModelConfig in DataModels.kt.
PinConfiguration Supported Via PinConfig in DataModels.kt.
Polygon / PolygonOptions Supported Via PolygonConfig in DataModels.kt:L70.
Polyline / PolylineOptions Supported Via PolylineConfig in DataModels.kt:L52.
OnMapReady Supported Callback in GoogleMap3D GoogleMap3D.kt:L70.
OnMapSteady Supported Callback in GoogleMap3D GoogleMap3D.kt:L71.
Popover / PopoverContentsView... Supported Via PopoverConfig in DataModels.kt:L109.
Vector3D Supported Used for scale in Map3DState.kt.
GoogleMap3D Composable... Supported Lifecycle handling implemented in GoogleMap3D.kt.
Core state management... Partial Map properties supported, gestures might need Map3DViewUiController.
Camera animation... Supported via Native flyCameraTo and flyCameraAround used in samples.

Not Yet Exposed Functionality

The following features and listeners from the Maps 3D SDK are not yet supported or exposed in this experimental Compose wrapper:

Feature / Class Status Reference / Notes
Map3DViewUiController Not Supported Gestures and UI settings controller.
Anchorable Not Supported Interface for anchorable objects.
BoundingBox Not Supported Spatial bounding box.
DrawingState Not Supported State of drawing operations.
MarkerView / MarkerViewOptions Not Supported View-based markers.
PinView Not Supported Custom pin views.
VisibilityState Not Supported Visibility state tracking.

References

Implementation in maps3d-compose

Demonstrations in maps3d-compose-demo