Merged in feat/SW-1616-clustering (pull request #1330)
feat(SW-1616): Added clustering on destination country/city pages * feat(SW-1616): Added clustering on destination country/city pages Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
import type { FeatureCollection, Point } from "geojson"
|
||||
|
||||
export interface DestinationMarker {
|
||||
id: string
|
||||
type: string
|
||||
name: string
|
||||
coordinates: google.maps.LatLngLiteral
|
||||
}
|
||||
|
||||
export type MarkerProperties = Omit<DestinationMarker, "coordinates">
|
||||
|
||||
export type MarkerGeojson = FeatureCollection<Point, MarkerProperties>
|
||||
export type MarkerFeature = MarkerGeojson["features"][number]
|
||||
|
||||
Reference in New Issue
Block a user