forked from pu20720/2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapView3.java
301 lines (234 loc) · 8.37 KB
/
MapView3.java
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package andbas.Ch11TabHost2;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.GoogleMap.InfoWindowAdapter;
import com.google.android.gms.maps.GoogleMap.OnInfoWindowClickListener;
import com.google.android.gms.maps.GoogleMap.OnMapClickListener;
import com.google.android.gms.maps.GoogleMap.OnMarkerClickListener;
import com.google.android.gms.maps.GoogleMap.OnMarkerDragListener;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.CameraPosition;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.android.gms.maps.model.Polyline;
import com.google.android.gms.maps.model.PolylineOptions;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.media.MediaScannerConnection;
import android.media.MediaScannerConnection.MediaScannerConnectionClient;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.text.TextUtils;
import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.MimeTypeMap;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TextView;
import android.widget.Toast;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
public class MapView3 extends locationDetection implements OnMapClickListener, OnMarkerClickListener, OnMarkerDragListener {
//MapView mapView;
GoogleMap mapView = null;
TextView textView1;
SupportMapFragment fragment;
LatLng Pune;
Marker pune;
LatLng dpoint;
EditText fileedit;
ArrayList<LatLng> latrec;
int start=0;
int press=0;
public String[] allFiles;
private String SCAN_PATH ;
private static final String FILE_TYPE="image/*";
private MediaScannerConnection conn;
//Uri uri;
Marker lastOpenned = null;
int path;
int diff;
int tr;
int drt;
String[] paths = null;
String[] path_content = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mapview1);
latrec = new ArrayList<LatLng>();
locationManager1 = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
setUpMapIfNeeded();
if(location1 !=null){
Pune = new LatLng(location1.getLatitude(),
location1.getLongitude());
mapView.animateCamera(CameraUpdateFactory.newLatLngZoom(Pune, 17));
}
else
{
Pune = new LatLng(25.03926, 121.394291);
mapView.animateCamera(CameraUpdateFactory.newLatLngZoom(Pune, 17));
}
locationProvider1 = LocationManager.GPS_PROVIDER;
locationManager1.requestLocationUpdates(locationProvider1,
100, 100, locationListener1);
Toast.makeText(this, "請點選任一點", Toast.LENGTH_LONG).show();
}
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mapView == null)
{
// Try to obtain the map from the SupportMapFragment.
//FragmentManager fm = getChildFragmentManager();
mapView = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapview)).getMap();
//mapView = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapview)).getMap();
// Check if we were successful in obtaining the map.
mapView.setOnMapClickListener(this);
mapView.setOnMarkerClickListener(this);
mapView.setOnMarkerDragListener(this);
if (mapView != null)
{
setUpMap();
}
//This is how you register the LocationSource
//mapView.setLocationSource(locationListener1);
}
}
private void setUpMap()
{
mapView.setMyLocationEnabled(true);
}
public LocationListener locationListener1 =
new LocationListener()
{
//@Override
public void onStatusChanged(String provider, int status, Bundle extras)
{
}
//@Override
public void onProviderEnabled(String provider)
{
}
//@Override
public void onProviderDisabled(String provider)
{
location1 = null;
}
//@Override
public void onLocationChanged(Location location)
{
location1 = location;
if (location1 != null)
{
Pune = new LatLng(location1.getLatitude(),
location1.getLongitude());
mapView.animateCamera(CameraUpdateFactory.newLatLngZoom(Pune, 17));
}
}
};
@Override
public void onMarkerDrag(Marker arg0) {
// TODO Auto-generated method stub
}
@Override
public void onMarkerDragEnd(Marker arg0) {
// TODO Auto-generated method stub
}
@Override
public void onMarkerDragStart(Marker arg0) {
// TODO Auto-generated method stub
}
@Override
public boolean onMarkerClick(Marker arg0) {
// TODO Auto-generated method stub
return false;
}
@Override
public void onMapClick(LatLng arg0)
{
// TODO Auto-generated method stub
dpoint = new LatLng(arg0.latitude, arg0.longitude);
String address = getAddressFromGPSData(arg0.latitude, arg0.longitude);
String str;
if (address.equals(""))
str = "你要標示的地點為:" + arg0.latitude + "," + arg0.longitude;
else
str = "你要標示的地點為:" + address;
openOptionsDialog(str);
//finish();
}
public String getAddressFromGPSData(double lat, double lng) {
HttpRetriever agent = new HttpRetriever();
String request = "http://maps.googleapis.com/maps/api/geocode/json?latlng=" + lat + ","
+ lng + "&language=zh-TW&sensor=true";
// Log.d("GeoCoder", request);
String response = agent.retrieve(request);
String formattedAddress = "";
if (response != null) {
Log.d("GeoCoder", response);
try {
JSONObject parentObject = new JSONObject(response);
JSONArray arrayOfAddressResults = parentObject
.getJSONArray("results");
JSONObject addressItem = arrayOfAddressResults.getJSONObject(0);
formattedAddress = addressItem.getString("formatted_address");
} catch (JSONException e) {
e.printStackTrace();
}
}
// Log.d("GeoCoder", response);
return formattedAddress;
}
private void openOptionsDialog(String str) {
new AlertDialog.Builder(this)
.setTitle("標示的地點")
.setMessage(str)
.setNegativeButton("No",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialoginterface, int i)
{
}
}
)
.setPositiveButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialoginterface, int i)
{
Content.rContent.npos = dpoint;
finish();
}
}
)
.show();
}
}