有谁知道要发送到map.removeAnnotation();
的参数是什么?
mapView.removeAnnotations(["list"]);
答案 0 :(得分:0)
我有一节课 的 onLocationChange 强>
mapView.removeAnnotation('pin');
glat = loc.getLatitude();
glng = loc.getLongitude();
//Setting the GPS Lat, Lng into the textView
//textViewGpsLat.setText("GPS Latitude: " + glat);
//textViewGpsLng.setText("GPS Longitude: " + glng);
mapView.addMarker(new MarkerOptions().title("pin").position(new LatLng(glat, glng)));
Log.d("LAT & LNG GPS:", glat + " " + glng);
和班级 showLoc
glocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
glocListener = new MyLocationListenerGPS();
glocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000 * 1, 0, glocListener);
我需要一直删除注释,更新更新时间