59 lines
1.2 KiB
Mathematica
59 lines
1.2 KiB
Mathematica
|
//
|
||
|
// AIRUrlTileOverlay.m
|
||
|
// AirMaps
|
||
|
//
|
||
|
// Created by cascadian on 3/19/16.
|
||
|
// Copyright © 2016. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "AIRMapUrlTile.h"
|
||
|
#import <React/UIView+React.h>
|
||
|
|
||
|
@implementation AIRMapUrlTile {
|
||
|
BOOL _urlTemplateSet;
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void)setUrlTemplate:(NSString *)urlTemplate{
|
||
|
_urlTemplate = urlTemplate;
|
||
|
_urlTemplateSet = YES;
|
||
|
[self createTileOverlayAndRendererIfPossible];
|
||
|
[self update];
|
||
|
}
|
||
|
|
||
|
- (void) createTileOverlayAndRendererIfPossible
|
||
|
{
|
||
|
if (!_urlTemplateSet) return;
|
||
|
self.tileOverlay = [[MKTileOverlay alloc] initWithURLTemplate:self.urlTemplate];
|
||
|
self.tileOverlay.canReplaceMapContent = YES;
|
||
|
self.renderer = [[MKTileOverlayRenderer alloc] initWithTileOverlay:self.tileOverlay];
|
||
|
}
|
||
|
|
||
|
- (void) update
|
||
|
{
|
||
|
if (!_renderer) return;
|
||
|
|
||
|
if (_map == nil) return;
|
||
|
[_map removeOverlay:self];
|
||
|
[_map addOverlay:self level:MKOverlayLevelAboveLabels];
|
||
|
}
|
||
|
|
||
|
#pragma mark MKOverlay implementation
|
||
|
|
||
|
- (CLLocationCoordinate2D) coordinate
|
||
|
{
|
||
|
return self.tileOverlay.coordinate;
|
||
|
}
|
||
|
|
||
|
- (MKMapRect) boundingMapRect
|
||
|
{
|
||
|
return self.tileOverlay.boundingMapRect;
|
||
|
}
|
||
|
|
||
|
- (BOOL)canReplaceMapContent
|
||
|
{
|
||
|
return self.tileOverlay.canReplaceMapContent;
|
||
|
}
|
||
|
|
||
|
@end
|