Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created June 1, 2022 19:34
Show Gist options
  • Save arriolac/40321664bcb5ec938001c6871b42808e to your computer and use it in GitHub Desktop.
Save arriolac/40321664bcb5ec938001c6871b42808e to your computer and use it in GitHub Desktop.
GoogleMapMarker.kt
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
GoogleMap(modifier = Modifier.fillMaxSize()) {
Marker(
state = MarkerState(LatLng(1.35, 103.87)),
title = "Marker in Singapore",
onClick = { Log.d("Marker", "Marker was clicked") }
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment