-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathLayersDemoActivity.java
More file actions
executable file
·238 lines (200 loc) · 8.27 KB
/
Copy pathLayersDemoActivity.java
File metadata and controls
executable file
·238 lines (200 loc) · 8.27 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.example.mapdemo;
import android.Manifest.permission;
import android.annotation.SuppressLint;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import android.Manifest;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ArrayAdapter;
import android.widget.CheckBox;
import android.widget.Spinner;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;
import static com.google.android.gms.maps.GoogleMap.MAP_TYPE_HYBRID;
import static com.google.android.gms.maps.GoogleMap.MAP_TYPE_NONE;
import static com.google.android.gms.maps.GoogleMap.MAP_TYPE_NORMAL;
import static com.google.android.gms.maps.GoogleMap.MAP_TYPE_SATELLITE;
import static com.google.android.gms.maps.GoogleMap.MAP_TYPE_TERRAIN;
/**
* Demonstrates the different base layers of a map.
*/
public class LayersDemoActivity extends SamplesBaseActivity
implements OnItemSelectedListener, OnMapReadyCallback,
ActivityCompat.OnRequestPermissionsResultCallback {
private static final int LOCATION_PERMISSION_REQUEST_CODE = 1;
private GoogleMap mMap;
private com.example.common_ui.databinding.LayersDemoBinding binding;
/**
* Flag indicating whether a requested permission has been denied after returning in {@link
* #onRequestPermissionsResult(int, String[], int[])}.
*/
private boolean mShowPermissionDeniedDialog = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
binding = com.example.common_ui.databinding.LayersDemoBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(
this, com.example.common_ui.R.array.layers_array, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
binding.layersSpinner.setAdapter(adapter);
binding.layersSpinner.setOnItemSelectedListener(this);
binding.traffic.setOnClickListener(v -> onTrafficToggled());
binding.myLocation.setOnClickListener(v -> onMyLocationToggled());
binding.buildings.setOnClickListener(v -> onBuildingsToggled());
binding.indoor.setOnClickListener(v -> onIndoorToggled());
SupportMapFragment mapFragment =
(SupportMapFragment) getSupportFragmentManager().findFragmentById(com.example.common_ui.R.id.map);
mapFragment.getMapAsync(this);
applyInsets(binding.mapContainer);
}
@Override
public void onMapReady(GoogleMap map) {
mMap = map;
com.google.android.gms.maps.model.CameraPosition initialPosition =
new com.google.android.gms.maps.model.CameraPosition.Builder()
.target(new com.google.android.gms.maps.model.LatLng(-33.8688, 151.2093))
.zoom(16.5f)
.tilt(40.0f)
.build();
mMap.moveCamera(com.google.android.gms.maps.CameraUpdateFactory.newCameraPosition(initialPosition));
updateMapType();
updateTraffic();
updateMyLocation();
updateBuildings();
updateIndoor();
}
private boolean checkReady() {
if (mMap == null) {
Toast.makeText(this, com.example.common_ui.R.string.map_not_ready, Toast.LENGTH_SHORT).show();
return false;
}
return true;
}
private void onTrafficToggled() {
updateTraffic();
}
private void updateTraffic() {
if (!checkReady()) {
return;
}
mMap.setTrafficEnabled(binding.traffic.isChecked());
}
private void onMyLocationToggled() {
updateMyLocation();
}
@SuppressLint("MissingPermission")
private void updateMyLocation() {
if (!checkReady()) {
return;
}
if (!binding.myLocation.isChecked()) {
mMap.setMyLocationEnabled(false);
return;
}
// Enable the location layer. Request the location permission if needed.
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED
|| ContextCompat.checkSelfPermission(this, permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
mMap.setMyLocationEnabled(true);
} else {
// Uncheck the box until the layer has been enabled and request missing permission.
binding.myLocation.setChecked(false);
PermissionUtils
.requestLocationPermissions(this, LOCATION_PERMISSION_REQUEST_CODE,false);
}
}
@SuppressLint("MissingPermission")
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] results) {
if (requestCode != LOCATION_PERMISSION_REQUEST_CODE) {
super.onRequestPermissionsResult(requestCode, permissions, results);
return;
}
if (PermissionUtils.isPermissionGranted(permissions, results,
permission.ACCESS_FINE_LOCATION)) {
mMap.setMyLocationEnabled(true);
binding.myLocation.setChecked(true);
} else {
mShowPermissionDeniedDialog = true;
}
}
@Override
protected void onResumeFragments() {
super.onResumeFragments();
if (mShowPermissionDeniedDialog) {
PermissionUtils.PermissionDeniedDialog
.newInstance(false).show(getSupportFragmentManager(), "dialog");
mShowPermissionDeniedDialog = false;
}
}
private void onBuildingsToggled() {
updateBuildings();
}
private void updateBuildings() {
if (!checkReady()) {
return;
}
mMap.setBuildingsEnabled(binding.buildings.isChecked());
}
private void onIndoorToggled() {
updateIndoor();
}
private void updateIndoor() {
if (!checkReady()) {
return;
}
mMap.setIndoorEnabled(binding.indoor.isChecked());
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
updateMapType();
}
private void updateMapType() {
// No toast because this can also be called by the Android framework in onResume() at which
// point mMap may not be ready yet.
if (mMap == null) {
return;
}
String layerName = ((String) binding.layersSpinner.getSelectedItem());
if (layerName.equals(getString(com.example.common_ui.R.string.normal))) {
mMap.setMapType(MAP_TYPE_NORMAL);
} else if (layerName.equals(getString(com.example.common_ui.R.string.hybrid))) {
mMap.setMapType(MAP_TYPE_HYBRID);
} else if (layerName.equals(getString(com.example.common_ui.R.string.satellite))) {
mMap.setMapType(MAP_TYPE_SATELLITE);
} else if (layerName.equals(getString(com.example.common_ui.R.string.terrain))) {
mMap.setMapType(MAP_TYPE_TERRAIN);
} else if (layerName.equals(getString(com.example.common_ui.R.string.none_map))) {
mMap.setMapType(MAP_TYPE_NONE);
} else {
Log.i("LDA", "Error setting layer with name " + layerName);
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
// Do nothing.
}
}