The UtilityNetworks toolkit component provides composable UI components for interacting with UtilityNetworks.
To see UtilityNetworkTraces in action, check out the UtilityNetworkTrace microapp.
The Trace
function is a composable function that provides configuration of networks traces and selects the Features that participate in the trace on a composable MapView.
- It can be integrated into any custom layout or container. The microapp integrates it into a
BottomSheet
. - It follows the material 3 design system.
To get started, set up a composable MapView
as described here.
Ensure the MapView's ArcGISMap has at least one UtilityNetwork in its definition.
To display an ArcGISMap containing a UtilityNetwork, create a new TraceState
object.
// In this example, the ArcGISMap object and the TraceState object are hoisted in the ViewModel
class MyComposablesViewModel : ViewModel() {
val arcGISMap = ArcGISMap(
PortalItem(
Portal.arcGISOnline(connection = Portal.Connection.Anonymous),
"471eb0bf37074b1fbb972b1da70fb310"
)
)
val mapViewProxy = MapViewProxy()
val graphicsOverlay = GraphicsOverlay()
val traceState = TraceState(arcGISMap, graphicsOverlay, mapViewProxy)
init {
viewModelScope.launch {
arcGISMap.load()
}
}
}
The Trace tool
can be rendered within a composition by simply calling the Trace
composable function). The Trace should be displayed in a container. It's visibility and the container are external and should be controlled by the calling Composable.
import com.arcgismaps.toolkit.utilitynetworks.TraceState
import com.arcgismaps.toolkit.utilitynetwork.Trace
@Composable
fun MyComposable(traceState : TraceState) {
BottomSheetScaffold(
sheetContent = {
AnimatedVisibility(
...
label = "trace tool",
modifier = Modifier.heightIn(min = 0.dp, max = 350.dp)
) {
Trace(traceState = viewModel.traceState)
}
}
...
) {
MapView(
arcGISMap = viewModel.arcGISMap,
mapViewProxy = viewModel.mapViewProxy,
graphicsOverlays = listOf(viewModel.graphicsOverlay),
...
)
...
}
More information on the material 3 specs here