You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I had to make the following changes to AnimatedCluster.d.ts to consume:
import VectorLayer from 'ol/layer/Vector';
import { Options } from 'ol/layer/BaseVector';
import { Cluster } from 'ol/source';
import BaseVectorLayer from 'ol/layer/BaseVector';
import BaseLayer from 'ol/layer/Base'
Hi, I had to make the following changes to AnimatedCluster.d.ts to consume:
import VectorLayer from 'ol/layer/Vector';
import { Options } from 'ol/layer/BaseVector';
import { Cluster } from 'ol/source';
import BaseVectorLayer from 'ol/layer/BaseVector';
import BaseLayer from 'ol/layer/Base'
interface ClusterOptions extends Options<BaseVectorLayer> {
animationDuration?: number;
easingFunction?: (t: number) => number;
}
/**
*/
export default class AnimatedCluster extends BaseLayer {
constructor(options?: ClusterOptions);
}
The text was updated successfully, but these errors were encountered: