public synchronized void run() {
Map.Entry<String, double[]> mapEntry = addedIterator.next();
// add car to visualizer
double[] sumoPos = mapEntry.getValue();
Car car = new Car(mapEntry.getKey(), sumoPos);
networkViewPlugin.addVolatileModelElement(car);
cars.put(mapEntry.getKey(), car);
}
};
try {