blob: 79219a01c9a291ed29bdf695eea3411a260f74aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
package eu.siacs.conversations.ui;
import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.location.Location;
import android.os.Bundle;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import eu.siacs.conversations.Config;
import eu.siacs.conversations.R;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
public class ShowLocationActivity extends Activity implements OnMapReadyCallback {
private GoogleMap mGoogleMap;
private LatLng mLocation;
private String mLocationName;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActionBar actionBar = getActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
}
setContentView(R.layout.show_locaction_activity);
MapFragment fragment = (MapFragment) getFragmentManager().findFragmentById(R.id.map_fragment);
fragment.getMapAsync(this);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
protected void onResume() {
super.onResume();
Intent intent = getIntent();
this.mLocationName = intent != null ? intent.getStringExtra("name") : null;
if (intent != null && intent.hasExtra("longitude") && intent.hasExtra("latitude")) {
double longitude = intent.getDoubleExtra("longitude",0);
double latitude = intent.getDoubleExtra("latitude",0);
this.mLocation = new LatLng(latitude,longitude);
if (this.mGoogleMap != null) {
markAndCenterOnLocation(this.mLocation, this.mLocationName);
}
}
}
@Override
protected void onPause() {
super.onPause();
}
@Override
public void onMapReady(GoogleMap googleMap) {
this.mGoogleMap = googleMap;
this.mGoogleMap.setMyLocationEnabled(true);
if (this.mLocation != null) {
this.markAndCenterOnLocation(this.mLocation,this.mLocationName);
}
}
private void markAndCenterOnLocation(LatLng location, String name) {
this.mGoogleMap.clear();
MarkerOptions options = new MarkerOptions();
options.position(location);
if (name != null) {
options.title(name);
this.mGoogleMap.addMarker(options).showInfoWindow();
} else {
this.mGoogleMap.addMarker(options);
}
this.mGoogleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(location, Config.DEFAULT_ZOOM));
}
}
|