- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
39 lines
2.1 KiB
TypeScript
39 lines
2.1 KiB
TypeScript
import MapView, { AnimatedMapView as Animated, MAP_TYPES, type MapViewProps } from './MapView';
|
|
import Marker from './MapMarker';
|
|
export { MapMarker } from './MapMarker';
|
|
export type { MapMarkerProps } from './MapMarker';
|
|
import Overlay from './MapOverlay';
|
|
export { MapOverlay } from './MapOverlay';
|
|
export type { MapOverlayProps } from './MapOverlay';
|
|
export { default as Polyline, MapPolyline } from './MapPolyline';
|
|
export type { MapPolylineProps } from './MapPolyline';
|
|
export { default as Heatmap, MapHeatmap } from './MapHeatmap';
|
|
export type { MapHeatmapProps } from './MapHeatmap';
|
|
export { default as Polygon, MapPolygon } from './MapPolygon';
|
|
export type { MapPolygonProps } from './MapPolygon';
|
|
export { default as Circle, MapCircle } from './MapCircle';
|
|
export type { MapCircleProps } from './MapCircle';
|
|
export { default as UrlTile, MapUrlTile } from './MapUrlTile';
|
|
export type { MapUrlTileProps } from './MapUrlTile';
|
|
export { default as WMSTile, MapWMSTile } from './MapWMSTile';
|
|
export type { MapWMSTileProps } from './MapWMSTile';
|
|
export { default as LocalTile, MapLocalTile } from './MapLocalTile';
|
|
export type { MapLocalTileProps } from './MapLocalTile';
|
|
export { default as Callout, MapCallout } from './MapCallout';
|
|
export type { MapCalloutProps } from './MapCallout';
|
|
export { default as CalloutSubview, MapCalloutSubview, } from './MapCalloutSubview';
|
|
export type { MapCalloutSubviewProps } from './MapCalloutSubview';
|
|
export { default as AnimatedRegion } from './AnimatedRegion';
|
|
export { default as Geojson } from './Geojson';
|
|
export type { GeojsonProps } from './Geojson';
|
|
export { Marker, Overlay };
|
|
export type { MapViewProps };
|
|
export { Animated, MAP_TYPES };
|
|
export * from './ProviderConstants';
|
|
export * from './MapView.types';
|
|
export * from './MapPolygon.types';
|
|
export * from './sharedTypes';
|
|
export declare const MarkerAnimated: import("react-native").Animated.AnimatedComponent<typeof import("./MapMarker").MapMarker>;
|
|
export declare const OverlayAnimated: import("react-native").Animated.AnimatedComponent<typeof import("./MapOverlay").MapOverlay>;
|
|
export default MapView;
|