- 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
93 lines
3.2 KiB
Objective-C
93 lines
3.2 KiB
Objective-C
//
|
|
// AIRGoogleMapOverlay.m
|
|
// Created by Nick Italiano on 3/5/17.
|
|
//
|
|
|
|
#ifdef HAVE_GOOGLE_MAPS
|
|
|
|
#import "AIRGoogleMapOverlay.h"
|
|
|
|
#import <React/RCTEventDispatcher.h>
|
|
#import <React/RCTImageLoaderProtocol.h>
|
|
#import <React/RCTUtils.h>
|
|
#import <React/UIView+React.h>
|
|
|
|
@interface AIRGoogleMapOverlay()
|
|
@property (nonatomic, strong, readwrite) UIImage *overlayImage;
|
|
@property (nonatomic, readwrite) GMSCoordinateBounds *overlayBounds;
|
|
@property (nonatomic) CLLocationDirection bearing;
|
|
@end
|
|
|
|
@implementation AIRGoogleMapOverlay {
|
|
RCTImageLoaderCancellationBlock _reloadImageCancellationBlock;
|
|
CLLocationCoordinate2D _southWest;
|
|
CLLocationCoordinate2D _northEast;
|
|
}
|
|
|
|
- (instancetype)init
|
|
{
|
|
if ((self = [super init])) {
|
|
_overlay = [[GMSGroundOverlay alloc] init];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)setImageSrc:(NSString *)imageSrc
|
|
{
|
|
NSLog(@">>> SET IMAGESRC: %@", imageSrc);
|
|
_imageSrc = imageSrc;
|
|
|
|
if (_reloadImageCancellationBlock) {
|
|
_reloadImageCancellationBlock();
|
|
_reloadImageCancellationBlock = nil;
|
|
}
|
|
|
|
__weak typeof(self) weakSelf = self;
|
|
_reloadImageCancellationBlock = [[_bridge moduleForName:@"ImageLoader"] loadImageWithURLRequest:[RCTConvert NSURLRequest:_imageSrc]
|
|
size:weakSelf.bounds.size
|
|
scale:RCTScreenScale()
|
|
clipped:YES
|
|
resizeMode:RCTResizeModeCenter
|
|
progressBlock:nil
|
|
partialLoadBlock:nil
|
|
completionBlock:^(NSError *error, UIImage *image) {
|
|
if (error) {
|
|
NSLog(@"%@", error);
|
|
}
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
NSLog(@">>> IMAGE: %@", image);
|
|
weakSelf.overlayImage = image;
|
|
weakSelf.overlay.icon = image;
|
|
});
|
|
}];
|
|
|
|
}
|
|
|
|
- (void)setBoundsRect:(NSArray *)boundsRect
|
|
{
|
|
_boundsRect = boundsRect;
|
|
|
|
_southWest = CLLocationCoordinate2DMake([boundsRect[1][0] doubleValue], [boundsRect[0][1] doubleValue]);
|
|
_northEast = CLLocationCoordinate2DMake([boundsRect[0][0] doubleValue], [boundsRect[1][1] doubleValue]);
|
|
|
|
_overlayBounds = [[GMSCoordinateBounds alloc] initWithCoordinate:_southWest
|
|
coordinate:_northEast];
|
|
|
|
_overlay.bounds = _overlayBounds;
|
|
}
|
|
|
|
- (void)setBearing:(double)bearing
|
|
{
|
|
_bearing = (double)bearing;
|
|
_overlay.bearing = _bearing;
|
|
}
|
|
|
|
- (void)setOpacity:(CGFloat)opacity
|
|
{
|
|
_overlay.opacity = opacity;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif
|