Fix loading times

This commit is contained in:
Andras Schmelczer 2026-01-26 20:42:52 +00:00
parent f685bdca04
commit 2f41c38cc4
4 changed files with 34 additions and 18 deletions

View file

@ -164,7 +164,8 @@ export default function Map({ data, onViewChange }: MapProps) {
getFillColor: (d) => priceToColor(d.avg_price),
extruded: false,
pickable: true,
opacity: 0.7,
opacity: 0.5,
highPrecision: true,
}),
],
[data]

View file

@ -37,5 +37,4 @@ export interface ViewChangeParams {
export interface ApiResponse {
features: HexagonData[];
truncated: boolean;
}