addPlacemarks abstract method

List<PlacemarkMapObject> addPlacemarks(
  1. ImageProvider image,
  2. IconStyle style, {
  3. required List<Point> points,
})

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.

Implementation

core.List<mapkit_map_placemark.PlacemarkMapObject> addPlacemarks(
  image_provider.ImageProvider image,
  mapkit_map_icon_style.IconStyle style, {
  required core.List<mapkit_geometry_point.Point> points,
});