diff --git a/packages/ripple-ui-maps/src/components/map/RplMap.vue b/packages/ripple-ui-maps/src/components/map/RplMap.vue index 8ff948a6d8..f6e21d8f90 100644 --- a/packages/ripple-ui-maps/src/components/map/RplMap.vue +++ b/packages/ripple-ui-maps/src/components/map/RplMap.vue @@ -50,6 +50,7 @@ interface Props { hasSidePanel?: boolean noresults?: boolean getFeatureTitle?: (feature: any) => string + clusteringDistance?: number } const props = withDefaults(defineProps(), { @@ -75,7 +76,8 @@ const props = withDefaults(defineProps(), { return ic }, noresults: false, - getFeatureTitle: (feature: any) => (feature ? feature.title : '') + getFeatureTitle: (feature: any) => (feature ? feature.title : ''), + clusteringDistance: 100 }) const zoom = ref(props.initialZoom) @@ -365,7 +367,7 @@ const noResultsRef = ref(null)