How to hide/show groups of markers by category with Google Maps in Android?

后端 未结 3 878
说谎
说谎 2021-01-12 19:46

I\'m looking to do something like what is done right here in Android. What I need to do is group markers into different groups and have checkboxes to each group.

W

3条回答
  •  心在旅途
    2021-01-12 20:01

    There's a few hidden problems here. You need to separate out the different tasks:

    1. Add Restaurant Markers on Restaurant check
    2. Remove Restaurant Markers on Restaurant un-check
    3. Add Bar Markers on Bar check
    4. Remove Bar Markers on Bar un-check

    You will need to keep a list of Restaurants and Bars, a SQLite database with a table for Restaurants and a table for Bars would be a good option.

    You can query the database and populate a list of POJO objects, and use those lists to generate the Markers when the checkboxes are checked.

    Then, you need to keep a separate list of the Markers, so that when the check-boxes are un-checked, you can remove the Markers from the map.

    Here is a simple example that I put together quickly with hard coded values, you will need to add the database part later.

    public class CheckMapActivity extends AppCompatActivity
            implements OnMapReadyCallback {
    
        GoogleMap googleMap;
        List restaurantList;
        List barList;
        List restaurantMarkers = new ArrayList<>();
        List barMarkers = new ArrayList<>();
    
        @Override
        protected void onCreate (Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_check_map);
    
            //Eventually load from a database
            //Hard coded here for now
            restaurantList = new ArrayList<>();
            barList =  new ArrayList<>();
    
            MapLocation r1 = new MapLocation(37.78344,-122.42578, "Restaurant One" );
            MapLocation r2 = new MapLocation(37.7876965,-122.4106738, "Restaurant Two" );
            restaurantList.add(r1);
            restaurantList.add(r2);
    
            MapLocation b1 = new MapLocation(37.7866028,-122.4044511, "Bar One" );
            MapLocation b2 = new MapLocation(37.7864459,-122.4090323, "Bar Two" );
            barList.add(b1);
            barList.add(b2);
    
            CheckBox checkRestaurants = (CheckBox) findViewById(R.id.checkRestaurants);
            checkRestaurants.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                    if (b){
                        showRestaurants();
                    } else {
                        hideRestaurants();
                    }
                }
            });
    
            CheckBox checBars = (CheckBox) findViewById(R.id.checkBars);
            checBars.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                    if (b) {
                        showBars();
                    } else {
                        hideBars();
                    }
                }
            });
        }
    
        @Override
        protected void onResume() {
            super.onResume();
    
            SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                    .findFragmentById(R.id.map);
    
            mapFragment.getMapAsync(this);
        }
    
        @Override
        public void onMapReady(GoogleMap map) {
    
            googleMap = map;
            setUpMap();
        }
    
        public void setUpMap() {
    
            googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
            googleMap.setMyLocationEnabled(true);
            googleMap.getUiSettings().setZoomControlsEnabled(true);
    
        }
    
        public void showRestaurants() {
    
            restaurantMarkers.clear();
            for (MapLocation loc : restaurantList){
                Marker marker = googleMap.addMarker(new MarkerOptions()
                        .position(new LatLng(loc.lat, loc.lon))
                        .title(loc.title)
                        .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_MAGENTA)));
    
                CameraPosition cameraPosition = new CameraPosition.Builder()
                        .target(new LatLng(loc.lat, loc.lon)).zoom(12).build();
                googleMap.animateCamera(CameraUpdateFactory
                        .newCameraPosition(cameraPosition));
    
                restaurantMarkers.add(marker);
            }
        }
    
        public void showBars() {
    
            barMarkers.clear();
            for (MapLocation loc : barList){
                Marker marker = googleMap.addMarker(new MarkerOptions()
                        .position(new LatLng(loc.lat, loc.lon))
                        .title(loc.title)
                        .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE)));
    
                CameraPosition cameraPosition = new CameraPosition.Builder()
                        .target(new LatLng(loc.lat, loc.lon)).zoom(12).build();
                googleMap.animateCamera(CameraUpdateFactory
                        .newCameraPosition(cameraPosition));
    
                barMarkers.add(marker);
            }
        }
    
        public void hideRestaurants(){
            for (Marker marker : restaurantMarkers){
                marker.remove();
            }
        }
    
        public void hideBars(){
            for (Marker marker : barMarkers){
                marker.remove();
            }
        }
    
        //POJO to hold locations:
        public class MapLocation {
            public MapLocation(double lt, double ln, String t){
                lat = lt;
                lon = ln;
                title = t;
            }
            public double lat;
            public double lon;
            public String title;
        }
    
    }
    

    Here's the layout, activity_check_map.xml:

    
    
        
    
        
    
            
            
    
        
    
    

    Result:

    Restaurants checked:

    Restaurants and Bars checked:

    Bars checked:

    Nothing checked:

提交回复
热议问题