Skip to content

Instantly share code, notes, and snippets.

Created January 27, 2016 03:50
Show Gist options
  • Select an option

  • Save anonymous/2f37785f367365746f4d to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/2f37785f367365746f4d to your computer and use it in GitHub Desktop.
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
public MapsLayout mapsLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(mapsLayout = new MapsLayout(this));
mapsLayout.mapView.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) {
mMap = googleMap;
// Add a marker in Sydney and move the camera
LatLng sydney = new LatLng(-34, 151);
mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment