Manual integration of RNN and RNM

This commit is contained in:
John Lyon-Smith
2018-03-27 13:37:05 -07:00
parent bef47656f5
commit 5952d62335
173 changed files with 4288 additions and 4577 deletions

View File

@@ -0,0 +1,55 @@
//
// GMSPolygon.h
// Google Maps SDK for iOS
//
// Copyright 2013 Google Inc.
//
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
// Service: https://developers.google.com/maps/terms
//
#import <UIKit/UIKit.h>
#import "GMSOverlay.h"
NS_ASSUME_NONNULL_BEGIN;
@class GMSPath;
/**
* GMSPolygon defines a polygon that appears on the map. A polygon (like a polyline) defines a
* series of connected coordinates in an ordered sequence; additionally, polygons form a closed loop
* and define a filled region.
*/
@interface GMSPolygon : GMSOverlay
/** The path that describes this polygon. The coordinates composing the path must be valid. */
@property(nonatomic, copy, nullable) GMSPath *path;
/**
* The array of GMSPath instances that describes any holes in this polygon. The coordinates
* composing each path must be valid.
*/
@property(nonatomic, copy, nullable) NSArray<GMSPath *> *holes;
/** The width of the polygon outline in screen points. Defaults to 1. */
@property(nonatomic, assign) CGFloat strokeWidth;
/** The color of the polygon outline. Defaults to nil. */
@property(nonatomic, strong, nullable) UIColor *strokeColor;
/** The fill color. Defaults to blueColor. */
@property(nonatomic, strong, nullable) UIColor *fillColor;
/** Whether this polygon should be rendered with geodesic correction. */
@property(nonatomic, assign) BOOL geodesic;
/**
* Convenience constructor for GMSPolygon for a particular path. Other properties will have default
* values.
*/
+ (instancetype)polygonWithPath:(nullable GMSPath *)path;
@end
NS_ASSUME_NONNULL_END;