50 lines
1.3 KiB
Mathematica
50 lines
1.3 KiB
Mathematica
|
/**
|
||
|
* Copyright (c) 2015-present, Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD-style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*/
|
||
|
|
||
|
#import "AIRMapPolygonManager.h"
|
||
|
|
||
|
#import <React/RCTBridge.h>
|
||
|
#import <React/RCTConvert.h>
|
||
|
#import <React/RCTConvert+CoreLocation.h>
|
||
|
#import <React/RCTEventDispatcher.h>
|
||
|
#import <React/RCTViewManager.h>
|
||
|
#import <React/UIView+React.h>
|
||
|
#import "RCTConvert+AirMap.h"
|
||
|
#import "AIRMapMarker.h"
|
||
|
#import "AIRMapPolygon.h"
|
||
|
|
||
|
@interface AIRMapPolygonManager()
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation AIRMapPolygonManager
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
AIRMapPolygon *polygon = [AIRMapPolygon new];
|
||
|
return polygon;
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(coordinates, AIRMapCoordinateArray)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(holes, AIRMapCoordinateArrayArray)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(fillColor, UIColor)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(strokeColor, UIColor)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(strokeWidth, CGFloat)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(lineCap, CGLineCap)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(lineJoin, CGLineJoin)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(miterLimit, CGFloat)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(lineDashPhase, CGFloat)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(lineDashPattern, NSArray)
|
||
|
RCT_EXPORT_VIEW_PROPERTY(onPress, RCTBubblingEventBlock)
|
||
|
|
||
|
|
||
|
@end
|