/**
  * Merges another collection into this one.
  *
  * @param \Drupal\openlayers\Types\Collection $collection
  *   The collection to merge into this one.
  */
 public function merge(Collection $collection)
 {
     foreach ($collection->getFlatList() as $object) {
         $this->prepend($object);
     }
 }