MMKClusterizedPlacemarkCollection
- Summary
- Instance methods
- addPlacemark
- addPlacemarkWithPlacemarkCreatedCallback:
- addEmptyPlacemarkWithPoint:
- addEmptyPlacemarksWithPoints:
- addPlacemarkWithPoint:
- addPlacemarkWithPoint:image:
- addPlacemarkWithPoint:image:style:
- addPlacemarkWithPoint:view:
- addPlacemarkWithPoint:view:style:
- addPlacemarkWithPoint:animatedImage:style:
- addPlacemarksWithPoints:image:style:
- clusterPlacemarksWithClusterRadius:minZoom:
@interface MMKClusterizedPlacemarkCollection : MMKBaseMapObjectCollection |
A collection that displays large groups of placemarks efficiently. Placemarks that are too close to each other with current zoom are rendered as a single cluster. Placemarks and clusters are not shown until clusterPlacemarks method is called explicitly.
Summary
Instance methods
- (nonnull MMKPlacemarkMapObject *)addPlacemark; |
- (nonnull MMKPlacemarkMapObject *)addPlacemarkWithPlacemarkCreatedCallback: |
- (nonnull MMKPlacemarkMapObject *)addEmptyPlacemarkWithPoint: |
- (nonnull NSArray<MMKPlacemarkMapObject *> *)addEmptyPlacemarksWithPoints: |
- (nonnull MMKPlacemarkMapObject *)addPlacemarkWithPoint: |
- (nonnull MMKPlacemarkMapObject *) |
- (nonnull MMKPlacemarkMapObject *) |
- (nonnull MMKPlacemarkMapObject *) |
- (nonnull MMKPlacemarkMapObject *) |
- (nonnull MMKPlacemarkMapObject *) |
- (nonnull NSArray<MMKPlacemarkMapObject *> *) |
- (void)clusterPlacemarksWithClusterRadius:(double)clusterRadius |
Instance methods
addPlacemark
- (nonnull MMKPlacemarkMapObject *)addPlacemark; |
Creates a new empty placemark and adds it to the current collection.
addPlacemarkWithPlacemarkCreatedCallback:
- (nonnull MMKPlacemarkMapObject *)addPlacemarkWithPlacemarkCreatedCallback: |
Creates a new empty placemark and adds it to the current collection. Callback can be used to setup placemark style and position Callback will be called before MapObjectCollectionListener#onMapObjectAdded
addEmptyPlacemarkWithPoint:
- (nonnull MMKPlacemarkMapObject *)addEmptyPlacemarkWithPoint: |
Creates a new empty placemark and adds it to the current collection. Hint: to add a large amount of empty placemarks use addEmptyPlacemarks method.
Alert
Use addPlacemark() + setGeometry(point)
addEmptyPlacemarksWithPoints:
- (nonnull NSArray<MMKPlacemarkMapObject *> *)addEmptyPlacemarksWithPoints: |
Creates new empty placemarks and adds them to the current collection.
Relevant for Android: this method provides better performance for adding a large number of empty placemarks than multiple calls of addEmptyPlacemark.
addPlacemarkWithPoint:
- (nonnull MMKPlacemarkMapObject *)addPlacemarkWithPoint: |
Creates a new placemark with the default icon and style, and adds it to the current collection.
Alert
Use addPlacemark() + setGeometry(point) + setIcon(your_own_blue_dot_icon). Default icon (also known as blue dot) is no longer provided.
addPlacemarkWithPoint:image:
- (nonnull MMKPlacemarkMapObject *) |
Creates a new placemark with the default style and adds it to the current collection.
Alert
Use addPlacemark() + setGeometry(point) + setIcon(image)
addPlacemarkWithPoint:image:style:
- (nonnull MMKPlacemarkMapObject *) |
Creates a new placemark and adds it to the current collection. Hint: to add a large amount of placemarks use addPlacemarks method.
Alert
Use addPlacemark() + setGeometry(point) + setIcon(image, style)
addPlacemarkWithPoint:view:
- (nonnull MMKPlacemarkMapObject *) |
Creates a new view placemark with default style and adds it to the current collection.
Alert
Use addPlacemark() + setGeometry(point) + setView(view)
addPlacemarkWithPoint:view:style:
- (nonnull MMKPlacemarkMapObject *) |
Creates a new view placemark and adds it to the current collection.
Alert
Use addPlacemark() + setGeometry(point) + setView(view, style)
addPlacemarkWithPoint:animatedImage:style:
- (nonnull MMKPlacemarkMapObject *) |
Creates a new placemark with animated icon and adds it to the current collection.
Alert
Use addPlacemark() + setGeometry(point) + useAnimation() + setIcon(animatedImage, style)
addPlacemarksWithPoints:image:style:
- (nonnull NSArray<MMKPlacemarkMapObject *> *) |
Creates new placemarks and adds them to the current collection. Relevant for Android: this method provides better performance for adding a large number of placemarks than multiple calls of addPlacemark.
clusterPlacemarksWithClusterRadius:minZoom:
- (void)clusterPlacemarksWithClusterRadius:(double)clusterRadius |
Updates clustered representations of placemark groups. This method must be called explicitly to render placemarks and clusters when collection is created and update them after collection change.
Parameters |
|
clusterRadius |
Minimal distance in units between objects that remain separate. The size of the unit is equal to the size of a pixel when the camera position's tilt is equal to 0 and the scale factor is equal to 1. |
minZoom |
Minimal zoom level that displays clusters. All placemarks will be rendered separately at more detailed zoom levels. The value will be clipped between 0 and 19 (most detailed zoom). |