Files
Eric FELIXINE e30ae8ed09 feat(smart-app): implement complete mobile app MVP
- 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
2026-06-01 18:00:35 -04:00

126 lines
3.7 KiB
Objective-C

//
// AIRGoogleMapWMSTile.m
// AirMaps
//
// Created by nizam on 10/28/18.
// Copyright © 2018. All rights reserved.
//
#ifdef HAVE_GOOGLE_MAPS
#import "AIRGoogleMapWMSTile.h"
@implementation AIRGoogleMapWMSTile
-(id) init
{
self = [super init];
_opacity = 1;
return self ;
}
- (void)setZIndex:(int)zIndex
{
_zIndex = zIndex;
_tileLayer.zIndex = zIndex;
}
- (void)setTileSize:(NSInteger)tileSize
{
_tileSize = tileSize;
if(self.tileLayer) {
self.tileLayer.tileSize = tileSize;
[self.tileLayer clearTileCache];
}
}
- (void)setMinimumZ:(NSInteger)minimumZ
{
_minimumZ = minimumZ;
if(self.tileLayer && _minimumZ) {
[self.tileLayer setMinimumZ: _minimumZ ];
[self.tileLayer clearTileCache];
}
}
- (void)setMaximumZ:(NSInteger)maximumZ
{
_maximumZ = maximumZ;
if(self.tileLayer && maximumZ) {
[self.tileLayer setMaximumZ: _maximumZ ];
[self.tileLayer clearTileCache];
}
}
- (void)setOpacity:(float)opacity
{
_opacity = opacity;
if(self.tileLayer ) {
[self.tileLayer setOpacity:opacity];
[self.tileLayer clearTileCache];
}
}
- (void)setUrlTemplate:(NSString *)urlTemplate
{
_urlTemplate = urlTemplate;
WMSTileOverlay *tile = [[WMSTileOverlay alloc] init];
[tile setUrlTemplate:urlTemplate];
[tile setMaximumZ: _maximumZ];
[tile setMinimumZ: _minimumZ];
[tile setOpacity: _opacity];
[tile setTileSize: _tileSize];
[tile setZIndex: _zIndex];
_tileLayer = tile;
}
@end
@implementation WMSTileOverlay
-(id) init
{
self = [super init];
_MapX = -20037508.34789244;
_MapY = 20037508.34789244;
_FULL = 20037508.34789244 * 2;
return self ;
}
-(NSArray *)getBoundBox:(NSInteger)x yAxis:(NSInteger)y zoom:(NSInteger)zoom
{
double tile = _FULL / pow(2.0, (double)zoom);
NSArray *result =[[NSArray alloc] initWithObjects:
[NSNumber numberWithDouble:_MapX + (double)x * tile ],
[NSNumber numberWithDouble:_MapY - (double)(y+1) * tile ],
[NSNumber numberWithDouble:_MapX + (double)(x+1) * tile ],
[NSNumber numberWithDouble:_MapY - (double)y * tile ],
nil];
return result;
}
- (UIImage *)tileForX:(NSUInteger)x y:(NSUInteger)y zoom:(NSUInteger)zoom
{
NSInteger maximumZ = self.maximumZ;
NSInteger minimumZ = self.minimumZ;
if(maximumZ && (long)zoom > (long)maximumZ) {
return nil;
}
if(minimumZ && (long)zoom < (long)minimumZ) {
return nil;
}
NSArray *bb = [self getBoundBox:x yAxis:y zoom:zoom];
NSMutableString *url = [self.urlTemplate mutableCopy];
[url replaceOccurrencesOfString: @"{minX}" withString:[NSString stringWithFormat:@"%@", bb[0]] options:0 range:NSMakeRange(0, url.length)];
[url replaceOccurrencesOfString: @"{minY}" withString:[NSString stringWithFormat:@"%@", bb[1]] options:0 range:NSMakeRange(0, url.length)];
[url replaceOccurrencesOfString: @"{maxX}" withString:[NSString stringWithFormat:@"%@", bb[2]] options:0 range:NSMakeRange(0, url.length)];
[url replaceOccurrencesOfString: @"{maxY}" withString:[NSString stringWithFormat:@"%@", bb[3]] options:0 range:NSMakeRange(0, url.length)];
[url replaceOccurrencesOfString: @"{width}" withString:[NSString stringWithFormat:@"%d", (int)self.tileSize] options:0 range:NSMakeRange(0, url.length)];
[url replaceOccurrencesOfString: @"{height}" withString:[NSString stringWithFormat:@"%d", (int)self.tileSize] options:0 range:NSMakeRange(0, url.length)];
NSURL *uri = [NSURL URLWithString:url];
NSData *data = [NSData dataWithContentsOfURL:uri];
UIImage *img = [[UIImage alloc] initWithData:data];
return img;
}
@end
#endif