Hallo zusammen,
ich hab mit der API V2 eine Karte eingebunden.
Die Routenverfolgung , Zoom, usw. klappt super.
Weiss jemand, wie ich den "Movingpoint" in der Kartenmitte halten kann, sprich die Karte bewegt sich hinter dem aktuellen Standort, und nicht umgekehrt?
der Pfeil läuft mir aus dem Bildrand raus.
folgendes hab ich in der onLocationChanged gemacht:
Code
LatLng latLng = new LatLng(latitude, longitude);
// Setting latitude and longitude in the TextView tv_location
tvLocation.setText("Latitude:" + latitude + ", Longitude:"+ longitude );
cameraPosition = new CameraPosition.Builder()
.target(latLng) // Sets the center of the map to Mountain View
.zoom(15) // Sets the zoom
.bearing(180) // Sets the orientation of the camera
.tilt(30) // Sets the tilt of the camera to 30 degrees
.build(); // Creates a CameraPosition from the builder
// Showing the current location in Google Map
googleMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
// Zoom in the Google Map
googleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
Alles anzeigen