feat(android): init basic marker and polylines
This commit is contained in:
parent
89ffc02e1d
commit
0ffd415874
5 changed files with 126 additions and 12 deletions
|
|
@ -1,12 +1,18 @@
|
|||
package moe.lava.banksia.native.maps
|
||||
|
||||
import androidx.compose.material3.ExperimentalMaterial3Api
|
||||
import androidx.compose.material3.SheetState
|
||||
import androidx.compose.runtime.Composable
|
||||
import androidx.compose.ui.Modifier
|
||||
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Composable
|
||||
actual fun Maps(
|
||||
modifier: Modifier,
|
||||
markers: List<Marker>
|
||||
markers: List<Marker>,
|
||||
polylines: List<Polyline>,
|
||||
cameraPosition: Point,
|
||||
sheetState: SheetState,
|
||||
) {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue