...
|
...
|
@@ -82,7 +82,7 @@ typedef enum { |
|
|
* @return An initialized RMMarker layer. */
|
|
|
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName;
|
|
|
|
|
|
/** Initializes and returns a newly allocated marker object using a medium-sized pin image, a given symbol name, e.g., `bus`, and a given color.
|
|
|
/** Initializes and returns a newly allocated marker object using a medium-sized pin image, a given symbol name, e.g., `bus`, and a given color.
|
|
|
* @param symbolName A symbol name from the [Maki](http://mapbox.com/maki/) icon set.
|
|
|
* @param color A color for the marker.
|
|
|
* @return An initialized RMMarker layer. */
|
...
|
...
|
@@ -106,7 +106,10 @@ typedef enum { |
|
|
* @param colorHex A color for the marker specified as an HTML hex code.
|
|
|
* @param sizeString A size such as `small`, `medium`, or `large`.
|
|
|
* @return An initialized RMMarker layer. */
|
|
|
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColorHex:(NSString *)colorHex sizeString:(NSString *)sizeString;
|
|
|
- (id)initWithMapBoxMarkerImage:(NSString *)symbolName tintColorHex:(NSString *)colorHex sizeString:(NSString *)sizeString;
|
|
|
|
|
|
/** Clears the local cache of Mapbox Marker images. Images are cached locally upon first use so that if the application goes offline, markers can still be used. */
|
|
|
+ (void)clearCachedMapBoxMarkers;
|
|
|
|
|
|
/** @name Altering Labels */
|
|
|
|
...
|
...
|
|