Guest User

Untitled

a guest
Nov 15th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. override fun onMapReady(googleMap: GoogleMap) {
  2. mMap = googleMap
  3.  
  4. // Add a marker in Sydney and move the camera
  5. val sydney = LatLng(-34.0, 151.0)
  6. mMap.addMarker(MarkerOptions().position(sydney).title("Marker in Sydney"))
  7. mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney))
  8. }
Add Comment
Please, Sign In to add comment