Skip to content

Commit

Permalink
fix: lint #222
Browse files Browse the repository at this point in the history
  • Loading branch information
1119wj committed Dec 3, 2024
1 parent c285b1e commit 72a6d21
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions frontend/src/store/googleMapSlice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@ import {
getGoogleMapClass,
loadGoogleMapsApi,
} from '@/lib/googleMapsAPI-loader';
import {
MarkerClusterer,
SuperClusterAlgorithm,
} from '@googlemaps/markerclusterer';
import { MarkerClusterer } from '@googlemaps/markerclusterer';
import {
clustererOptions,
CustomMarkerClusterer,
} from '@/lib/CustomMarkerClusterer';
import { CustomSuperClusterAlgorithm } from '@/lib/CustomSuperCluseterAlgorithm';
import { SuperClusterAlgorithmTest } from '@/lib/SuperClusterAlgorithm';

export type GoogleMapState = {
googleMap: google.maps.Map | null;
Expand Down Expand Up @@ -49,7 +45,7 @@ export const createGoogleMapSlice: StateCreator<
algorithm: new CustomSuperClusterAlgorithm({ maxZoom: 18 }),
...restClustererOptions,
});

console.log(algorithm);
set({ googleMap: map, markerClusterer });
},

Expand Down

0 comments on commit 72a6d21

Please sign in to comment.