Cluster markers in Google Maps Android v2

后端 未结 8 1715
你的背包
你的背包 2020-12-23 15:01

I have to place different markers on a GoogleMap from the Google Maps Android v2 API. The problem is that multiple markers are set to the same position (lat/lng), so the use

相关标签:
8条回答
  • 2020-12-23 15:45

    For others who are looking for implementing their own clustering code. Please check my clustering algo very fast and works amazingly good.

    I looked at various libraries and found them so complex couldn't understand a word so I decided to make my own clustering algorithm. Here goes my code in java.

        static int OFFSET = 268435456;
            static double RADIUS = 85445659.4471;
            static double pi = 3.1444;
    
        public static double lonToX(double lon) {
            return Math.round(OFFSET + RADIUS * lon * pi / 180);
        }
    
        public static double latToY(double lat) {
            return Math.round(OFFSET
                    - RADIUS
                    * Math.log((1 + Math.sin(lat * pi / 180))
                            / (1 - Math.sin(lat * pi / 180))) / 2);
        }
    
        public static int pixelDistance(double lat1, double lon1, double lat2,
                double lon2, int zoom) {
            double x1 = lonToX(lon1);
            double y1 = latToY(lat1);
    
            double x2 = lonToX(lon2);
            double y2 = latToY(lat2);
    
            return (int) (Math
                    .sqrt(Math.pow((x1 - x2), 2) + Math.pow((y1 - y2), 2))) >> (21 - zoom);
        }
    
        static ArrayList<Cluster> cluster(ArrayList<Marker> markers, int zoom) {
    
            ArrayList<Cluster> clusterList = new ArrayList<Cluster>();
    
            ArrayList<Marker> originalListCopy = new ArrayList<Marker>();
    
            for (Marker marker : markers) {
                originalListCopy.add(marker);
            }
    
            /* Loop until all markers have been compared. */
            for (int i = 0; i < originalListCopy.size();) {
    
                /* Compare against all markers which are left. */
    
                ArrayList<Marker> markerList = new ArrayList<Marker>();
                for (int j = i + 1; j < markers.size();) {
                    int pixelDistance = pixelDistance(markers.get(i).getLatitude(),
                            markers.get(i).getLongitude(), markers.get(j)
                                    .getLatitude(), markers.get(j).getLongitude(),
                            zoom);
    
                    if (pixelDistance < 40) {
    
    
                        markerList.add(markers.get(j));
    
                        markers.remove(j);
    
                        originalListCopy.remove(j);
                        j = i + 1;
                    } else {
                        j++;
                    }
    
                }
    
                if (markerList.size() > 0) {
     markerList.add(markers.get(i));                
    Cluster cluster = new Cluster(clusterList.size(), markerList,
                            markerList.size() + 1, originalListCopy.get(i)
                                    .getLatitude(), originalListCopy.get(i)
                                    .getLongitude());
                    clusterList.add(cluster);
                    originalListCopy.remove(i);
                    markers.remove(i);
                    i = 0;
    
                } else {
                    i++;
                }
    
                /* If a marker has been added to cluster, add also the one */
                /* we were comparing to and remove the original from array. */
    
            }
            return clusterList;
        }
    
    Just pass in your array list here containing latitude and longitude then to display clusters. Here goes the function.
    
    
        @Override
        public void onTaskCompleted(ArrayList<FlatDetails> flatDetailsList) {
    
            LatLngBounds.Builder builder = new LatLngBounds.Builder();
    
            originalListCopy = new ArrayList<FlatDetails>();
            ArrayList<Marker> markersList = new ArrayList<Marker>();
            for (FlatDetails detailList : flatDetailsList) {
    
                markersList.add(new Marker(detailList.getLatitude(), detailList
                        .getLongitude(), detailList.getApartmentTypeString()));
    
                originalListCopy.add(detailList);
    
                builder.include(new LatLng(detailList.getLatitude(), detailList
                        .getLongitude()));
    
            }
    
            LatLngBounds bounds = builder.build();
            int padding = 0; // offset from edges of the map in pixels
            CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, padding);
    
            googleMap.moveCamera(cu);
    
            ArrayList<Cluster> clusterList = Utils.cluster(markersList,
                    (int) googleMap.getCameraPosition().zoom);
    
            // Removes all markers, overlays, and polylines from the map.
            googleMap.clear();
    
            // Zoom in, animating the camera.
            googleMap.animateCamera(CameraUpdateFactory.zoomTo(previousZoomLevel),
                    2000, null);
    
            CircleOptions circleOptions = new CircleOptions().center(point) //
                    // setcenter
                    .radius(3000) // set radius in meters
                    .fillColor(Color.TRANSPARENT) // default
                    .strokeColor(Color.BLUE).strokeWidth(5);
    
            googleMap.addCircle(circleOptions);
    
            for (Marker detail : markersList) {
    
                if (detail.getBhkTypeString().equalsIgnoreCase("1 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk1)));
                } else if (detail.getBhkTypeString().equalsIgnoreCase("2 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk_2)));
    
                }
    
                else if (detail.getBhkTypeString().equalsIgnoreCase("3 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk_3)));
    
                } else if (detail.getBhkTypeString().equalsIgnoreCase("2.5 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk2)));
    
                } else if (detail.getBhkTypeString().equalsIgnoreCase("4 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk_4)));
    
                } else if (detail.getBhkTypeString().equalsIgnoreCase("5 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk5)));
    
                } else if (detail.getBhkTypeString().equalsIgnoreCase("5+ BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk_5)));
    
                }
    
                else if (detail.getBhkTypeString().equalsIgnoreCase("2 BHK")) {
                    googleMap.addMarker(new MarkerOptions()
                            .position(
                                    new LatLng(detail.getLatitude(), detail
                                            .getLongitude()))
                            .snippet(String.valueOf(""))
                            .title("Flat" + flatDetailsList.indexOf(detail))
                            .icon(BitmapDescriptorFactory
                                    .fromResource(R.drawable.bhk_2)));
    
                }
            }
    
            for (Cluster cluster : clusterList) {
    
                BitmapFactory.Options options = new BitmapFactory.Options();
                options.inMutable = true;
                options.inPurgeable = true;
                Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
                        R.drawable.cluster_marker, options);
    
                Canvas canvas = new Canvas(bitmap);
    
                Paint paint = new Paint();
                paint.setColor(getResources().getColor(R.color.white));
                paint.setTextSize(30);
    
                canvas.drawText(String.valueOf(cluster.getMarkerList().size()), 10,
                        40, paint);
    
                googleMap.addMarker(new MarkerOptions()
                        .position(
                                new LatLng(cluster.getClusterLatitude(), cluster
                                        .getClusterLongitude()))
                        .snippet(String.valueOf(cluster.getMarkerList().size()))
                        .title("Cluster")
                        .icon(BitmapDescriptorFactory.fromBitmap(bitmap)));
    
            }
    
        }
    
    0 讨论(0)
  • 2020-12-23 15:48

    For who is having troubles with Clusterkraf (I can't make it work!) and for who can't use android-maps-extension cause it's shipped with a custom build of Play Services lib, I want to suggest this other library, that is tiny, well written and works out of the box:

    Clusterer: https://github.com/mrmans0n/clusterer

    After a whole morning spent trying using the other two libs, this one saved my day!

    0 讨论(0)
  • 2020-12-23 15:48

    if you are getting only the newest marker then you need to cluster all the markers

    > private ClusterManager<MyItem> mClusterManager;
    

    after affffding your items

    mClusterManager.addItem("your item");
    mClusterManager.cluster();
    
    0 讨论(0)
  • 2020-12-23 15:53

    I haven't had a chance to try this out yet, but it looks very promising:

    http://code.google.com/p/android-maps-extensions/

    From this post

    Here is another library with some pretty cool looking cluster animations:

    https://github.com/twotoasters/clusterkraf

    0 讨论(0)
  • 2020-12-23 15:53

    You need to follow these steps:

    1. We need to implement / instal Google Maps Android API utility library

    Android studio / Gradle:

    dependencies {
        compile 'com.google.maps.android:android-maps-utils:0.3+'
    }
    
    1. Second you need to read official documentation from Google -> Google Maps Android Marker Clustering Utility

    Add a simple marker clusterer

    Follow the steps below to create a simple cluster of ten markers. The result will look like this, although the number of markers shown/clustered will change depending on the zoom level:

    Add a simple marker clusterer

    Here is a summary of the steps required:

    1. Implement ClusterItem to represent a marker on the map. The cluster item returns the position of the marker as a LatLng object.
    2. Add a new ClusterManager to group the cluster items (markers) based on zoom level.
    3. Set the map's OnCameraChangeListener() to the ClusterManager, since ClusterManager implements the listener.
    4. If you want to add specific functionality in response to a marker click event, set the map's OnMarkerClickListener() to the ClusterManager, since ClusterManager implements the listener.
    5. Feed the markers into the ClusterManager.

    Looking at the steps in more detail: To create our simple cluster of ten markers, first create a MyItem class that implements ClusterItem.

    public class MyItem implements ClusterItem {
        private final LatLng mPosition;
    
        public MyItem(double lat, double lng) {
            mPosition = new LatLng(lat, lng);
        }
    
        @Override
        public LatLng getPosition() {
            return mPosition;
        }
    }
    

    In your map activity, add the ClusterManager and feed it the cluster items. Note the type argument <MyItem>, which declares the ClusterManager to be of type MyItem.

    private void setUpClusterer() {
        // Declare a variable for the cluster manager.
        private ClusterManager<MyItem> mClusterManager;
    
        // Position the map.
        getMap().moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(51.503186, -0.126446), 10));
    
        // Initialize the manager with the context and the map.
        // (Activity extends context, so we can pass 'this' in the constructor.)
        mClusterManager = new ClusterManager<MyItem>(this, getMap());
    
        // Point the map's listeners at the listeners implemented by the cluster
        // manager.
        getMap().setOnCameraChangeListener(mClusterManager);
        getMap().setOnMarkerClickListener(mClusterManager);
    
        // Add cluster items (markers) to the cluster manager.
        addItems();
    }
    
    private void addItems() {
    
        // Set some lat/lng coordinates to start with.
        double lat = 51.5145160;
        double lng = -0.1270060;
    
        // Add ten cluster items in close proximity, for purposes of this example.
        for (int i = 0; i < 10; i++) {
            double offset = i / 60d;
            lat = lat + offset;
            lng = lng + offset;
            MyItem offsetItem = new MyItem(lat, lng);
            mClusterManager.addItem(offsetItem);
        }
    }
    

    Demo

    https://www.youtube.com/watch?v=5ZnVraO1mT4

    Github

    If you need more information / completed project please visit: https://github.com/dimitardanailov/googlemapsclustermarkers

    If you have more questions, please contact me.

    0 讨论(0)
  • 2020-12-23 16:04

    Google has provided a utility to do this as part of their Google Maps Android API Utility Library:

    https://developers.google.com/maps/documentation/android/utility/marker-clustering

    with the source at:

    https://github.com/googlemaps/android-maps-utils

    0 讨论(0)
提交回复
热议问题