有人知道要发送到map.removeAnnotation();的参数是什么吗?

mapView.removeAnnotations(["list"]);

最佳答案

我有一堂课
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);


我需要一直删除注释,以更新更新时间

关于java - 函数removeAnnotation的Whats参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33500492/

10-09 08:57