Skip to content

Commit

Permalink
adds setmap
Browse files Browse the repository at this point in the history
  • Loading branch information
DonovanAndrews300 committed Jan 10, 2025
1 parent 667ed89 commit 726bfc0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/PropertyMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import Map, {
} from 'react-map-gl/maplibre';
import maplibregl, {
Map as MaplibreMap,
IControl,
PointLike,
MapGeoJSONFeature,
ColorSpecification,
Expand Down Expand Up @@ -183,6 +184,7 @@ const PropertyMap: FC<PropertyMapProps> = ({
const { appFilter } = useFilter();
const [popupInfo, setPopupInfo] = useState<any | null>(null);
const [map, setMap] = useState<MaplibreMap | null>(null);
const [mapController, setMapController] = useState<IControl>();
const [currentStyle, setCurrentStyle] = useState<string>(
'Data Visualization View'
);
Expand Down

0 comments on commit 726bfc0

Please sign in to comment.