Package 

Class GoogleMapKt

    • Method Summary

      Modifier and Type Method Description
      final static Unit GoogleMap(Modifier modifier, CameraPositionState cameraPositionState, String contentDescription, Function0<GoogleMapOptions> googleMapOptionsFactory, MapProperties properties, LocationSource locationSource, MapUiSettings uiSettings, IndoorStateChangeListener indoorStateChangeListener, Function1<LatLng, Unit> onMapClick, Function1<LatLng, Unit> onMapLongClick, Function0<Unit> onMapLoaded, Function0<Boolean> onMyLocationButtonClick, Function1<Location, Unit> onMyLocationClick, Function1<PointOfInterest, Unit> onPOIClick, PaddingValues contentPadding, Function0<Unit> content) A compose container for a MapView.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • GoogleMap

        @Composable() final static Unit GoogleMap(Modifier modifier, CameraPositionState cameraPositionState, String contentDescription, Function0<GoogleMapOptions> googleMapOptionsFactory, MapProperties properties, LocationSource locationSource, MapUiSettings uiSettings, IndoorStateChangeListener indoorStateChangeListener, Function1<LatLng, Unit> onMapClick, Function1<LatLng, Unit> onMapLongClick, Function0<Unit> onMapLoaded, Function0<Boolean> onMyLocationButtonClick, Function1<Location, Unit> onMyLocationClick, Function1<PointOfInterest, Unit> onPOIClick, PaddingValues contentPadding, Function0<Unit> content)

        A compose container for a MapView.

        Parameters:
        modifier - Modifier to be applied to the GoogleMap
        cameraPositionState - the CameraPositionState to be used to control or observe the map's camera state
        contentDescription - the content description for the map used by accessibility services to describe the map.
        googleMapOptionsFactory - the block for creating the GoogleMapOptions provided when the map is created
        properties - the properties for the map
        locationSource - the LocationSource to be used to provide location data
        uiSettings - the MapUiSettings to be used for UI-specific settings on the map
        indoorStateChangeListener - listener for indoor building state changes
        onMapClick - lambda invoked when the map is clicked
        onMapLoaded - lambda invoked when the map is finished loading
        onMyLocationButtonClick - lambda invoked when the my location button is clicked
        onMyLocationClick - lambda invoked when the my location dot is clicked
        onPOIClick - lambda invoked when a POI is clicked
        content - the content of the map