diff --git a/packages/geo/__tests__/testData.ts b/packages/geo/__tests__/testData.ts index 6e06d16a3e0..f41c7d828e1 100644 --- a/packages/geo/__tests__/testData.ts +++ b/packages/geo/__tests__/testData.ts @@ -58,6 +58,7 @@ export const TestPlacePascalCase = { Geometry: { Point: [2345, 6789], }, + Interpolated: false, Label: "don't try to label me", Municipality: 'Muni', Neighborhood: 'hay', diff --git a/packages/geo/src/types/Geo.ts b/packages/geo/src/types/Geo.ts index 5419ef11b86..17285a4cd6b 100644 --- a/packages/geo/src/types/Geo.ts +++ b/packages/geo/src/types/Geo.ts @@ -73,6 +73,7 @@ export interface Place { addressNumber?: string; country?: string; geometry: PlaceGeometry | undefined; + interpolated?: boolean; label?: string; municipality?: string; neighborhood?: string;