63 lines
2.3 KiB
Java
63 lines
2.3 KiB
Java
//PVT15 -- Ivan Gren - lmao
|
|
|
|
package com.example.testapp1;
|
|
|
|
import androidx.fragment.app.FragmentActivity;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import com.google.android.gms.maps.CameraUpdateFactory;
|
|
import com.google.android.gms.maps.GoogleMap;
|
|
import com.google.android.gms.maps.OnMapReadyCallback;
|
|
import com.google.android.gms.maps.SupportMapFragment;
|
|
import com.google.android.gms.maps.model.LatLng;
|
|
import com.google.android.gms.maps.model.MarkerOptions;
|
|
import com.example.testapp1.databinding.ActivityMapsBinding;
|
|
|
|
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
|
|
|
|
private GoogleMap mMap;
|
|
private ActivityMapsBinding binding;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
|
|
binding = ActivityMapsBinding.inflate(getLayoutInflater());
|
|
setContentView(binding.getRoot());
|
|
|
|
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
|
|
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
|
|
.findFragmentById(R.id.map);
|
|
mapFragment.getMapAsync(this);
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
* 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.
|
|
*/
|
|
@Override
|
|
public void onMapReady(GoogleMap googleMap) {
|
|
int j = 0; //uselessgit p
|
|
|
|
mMap = googleMap;
|
|
|
|
|
|
// Add a marker in Gröna Lund
|
|
LatLng gronan = new LatLng(59.324647, 18.097289);
|
|
mMap.addMarker(new MarkerOptions().position(gronan).title("Marker at Gröna Lund"));
|
|
|
|
// Add a marker in Slussen and move the camera
|
|
LatLng sthlm = new LatLng(59.320751, 18.068474);
|
|
mMap.addMarker(new MarkerOptions().position(sthlm).title("Marker at Slussen"));
|
|
mMap.moveCamera(CameraUpdateFactory.newLatLng(sthlm));
|
|
|
|
//Route between markers
|
|
|
|
}
|
|
} |