From 9c9780856aa61731ca617d9d051de765972ab1d3 Mon Sep 17 00:00:00 2001 From: Yash Aryan Chopra <61695271+yazyyyyy@users.noreply.github.com> Date: Tue, 17 Aug 2021 22:45:56 +0530 Subject: [PATCH] Update MapsActivity.java --- app/src/main/java/com/example/rotg/MapsActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/example/rotg/MapsActivity.java b/app/src/main/java/com/example/rotg/MapsActivity.java index 293acd9..b537cea 100644 --- a/app/src/main/java/com/example/rotg/MapsActivity.java +++ b/app/src/main/java/com/example/rotg/MapsActivity.java @@ -30,7 +30,7 @@ protected void onCreate(Bundle savedInstanceState) { * Manipulates the map once available. * This callback is triggered when the map is ready to be used. * This is where we can add markers or lines, add listeners or move the camera. In this case, - * we just add a marker near Sydney, Australia. + * we just add a marker near BNMIT smart bin. * If Google Play services is not installed on the device, the user will be prompted to install * it inside the SupportMapFragment. This method will only be triggered once the user has * installed Google Play services and returned to the app. @@ -39,7 +39,7 @@ protected void onCreate(Bundle savedInstanceState) { public void onMapReady(GoogleMap googleMap) { mMap = googleMap; - // Add a marker in Sydney and move the camera + // Add a marker in BNMIT and move the camera LatLng bnmit = new LatLng(12.922153, 77.567152); mMap.addMarker(new MarkerOptions().position(bnmit).title("Marker in BNMIT")); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(bnmit,10F));