RMMapView.h 23.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
//
//  RMMapView.h
//
// Copyright (c) 2008-2012, Route-Me Contributors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this
//   list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
//   this list of conditions and the following disclaimer in the documentation
//   and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

#import <UIKit/UIKit.h>
#import <CoreGraphics/CGGeometry.h>

#import "RMGlobalConstants.h"
#import "RMFoundation.h"
#import "RMMapViewDelegate.h"
#import "RMTile.h"
#import "RMProjection.h"
#import "RMMapOverlayView.h"
#import "RMMapTiledLayerView.h"
#import "RMMapScrollView.h"
#import "RMTileSourcesContainer.h"

@class RMProjection;
@class RMFractalTileProjection;
@class RMTileCache;
@class RMMapLayer;
@class RMMapTiledLayerView;
@class RMMapScrollView;
@class RMMarker;
@class RMAnnotation;
@class RMQuadTree;
@class RMUserLocation;

// constants for boundingMask
enum : NSUInteger {
    RMMapNoMinBound		= 0, // Map can be zoomed out past view limits
    RMMapMinHeightBound	= 1, // Minimum map height when zooming out restricted to view height
    RMMapMinWidthBound	= 2  // Minimum map width when zooming out restricted to view width (default)
};

// constants for the scrollview deceleration mode
typedef enum : NSUInteger {
    RMMapDecelerationNormal = 0,
    RMMapDecelerationFast   = 1, // default
    RMMapDecelerationOff    = 2
} RMMapDecelerationMode;

/** An RMMapView object provides an embeddable map interface, similar to the one provided by Apple's MapKit. You use this class to display map information and to manipulate the map contents from your application. You can center the map on a given coordinate, specify the size of the area you want to display, and annotate the map with custom information.
*
*   @warning Please note that you are responsible for getting permission to use the map data, and for ensuring your use adheres to the relevant terms of use. */
@interface RMMapView : UIView

/** @name Accessing the Delegate */

/** The receiver's delegate.
*
*   A map view sends messages to its delegate regarding the loading of map data and changes in the portion of the map being displayed. The delegate also manages the annotation layers used to highlight points of interest on the map.
*
*   The delegate should implement the methods of the RMMapViewDelegate protocol. */
@property (nonatomic, assign) IBOutlet id <RMMapViewDelegate>delegate;

#pragma mark - View properties

/** @name Configuring Map Behavior */

/** A Boolean value that determines whether the user may scroll around the map.
*
*   This property controls only user interactions with the map. If you set the value of this property to `NO`, you may still change the map location programmatically.
*
*   The default value of this property is `YES`. */
@property (nonatomic, assign) BOOL enableDragging;

/** A Boolean value that determines whether the map view bounces past the edge of content and back again and whether it animates the content scaling when the scaling exceeds the maximum or minimum limits.
*
*   If the value of this property is `YES`, the map view bounces when it encounters a boundary of the content or when zooming exceeds either the maximum or minimum limits for scaling. Bouncing visually indicates that scrolling or zooming has reached an edge of the content. If the value is `NO`, scrolling and zooming stop immediately at the content boundary without bouncing.
*
*   The default value is `NO`. */
@property (nonatomic, assign) BOOL enableBouncing;

/** A Boolean value that determines whether double-tap zooms of the map always zoom on the center of the map, or whether they zoom on the center of the double-tap gesture. The default value is `NO`, which zooms on the gesture. */
@property (nonatomic, assign) BOOL zoomingInPivotsAroundCenter;

/** A custom deceleration mode for the map view for drag operations. Set to `RMMapDecelerationOff` to disable map drag deceleration. The default value is `RMMapDecelerationFast`. */
@property (nonatomic, assign) RMMapDecelerationMode decelerationMode;

@property (nonatomic, assign)   double metersPerPixel;
@property (nonatomic, readonly) double scaledMetersPerPixel;
@property (nonatomic, readonly) double scaleDenominator; // The denominator in a cartographic scale like 1/24000, 1/50000, 1/2000000.
@property (nonatomic, readonly) float screenScale;

/** @name Supporting Retina Displays */

/** A Boolean value that adjusts the display of map tile images for retina-capable screens.
*
*   If set to `YES`, the map tiles are drawn at double size, typically 512 pixels square instead of 256 pixels, in order to compensate for smaller features and to make them more legible. If tiles designed for retina devices are used, this value should be set to `NO` in order to display these tiles at the proper size. The default value is `NO`. */
@property (nonatomic, assign)   BOOL adjustTilesForRetinaDisplay;

@property (nonatomic, readonly) float adjustedZoomForRetinaDisplay; // takes adjustTilesForRetinaDisplay and screen scale into account

/** @name Attributing Map Data */

/** Whether to hide map data attribution for the map view.
*
*   If this is set to NO, a small disclosure button will be added to the lower-right of the map view, allowing the user to tap it to display a modal view showing map data attribution info. The modal presentation uses a page curl animation to reveal the attribution info under the map view.
*
*   The default value is NO, meaning that attribution info will be shown. Please ensure that the terms & conditions of any map data used in your application are satisfied before setting this value to YES. */
@property (nonatomic, assign) BOOL hideAttribution;

/** @name Fine-Tuning the Map Appearance */

/** Take missing tiles from lower-numbered zoom levels, up to a given number of zoom levels. This can be used in order to increase perceived tile load performance or to allow zooming in beyond levels supported natively by a given tile source. Defaults to 1. */
@property (nonatomic, assign) NSUInteger missingTilesDepth;

@property (nonatomic, assign) NSUInteger boundingMask;

/** A custom, static view to use behind the map tiles. The default behavior is to use grid imagery that moves with map panning like MapKit. */
@property (nonatomic, retain) UIView *backgroundView;

/** A Boolean value indicating whether to draw tile borders and z/x/y numbers on tile images for debugging purposes. Defaults to `NO`. */
@property (nonatomic, assign) BOOL debugTiles;

/** A Boolean value indicating whether to show a small logo in the corner of the map view. Defaults to `YES`. */
@property (nonatomic, assign) BOOL showLogoBug;

#pragma mark - Initializers

/** @name Initializing a Map View */

/** Initialize a map view with a given frame and tile source. 
*   @param frame The frame with which to initialize the map view. 
*   @param newTilesource The tile source to use for the map tiles. 
*   @return An initialized map view, or `nil` if the map view was unable to be initialized. */
- (id)initWithFrame:(CGRect)frame andTilesource:(id <RMTileSource>)newTilesource;

/** Designated initializer. Initialize a map view. 
*   @param frame The map view's frame. 
*   @param newTilesource A tile source to use for the map tiles. 
*   @param initialCenterCoordinate The starting map center coordinate.
*   @param initialTileSourceZoomLevel The starting map zoom level, clamped to the zoom levels supported by the tile source(s).
*   @param initialTileSourceMaxZoomLevel The maximum zoom level allowed by the map view, clamped to the zoom levels supported by the tile source(s).
*   @param initialTileSourceMinZoomLevel The minimum zoom level allowed by the map view, clamped to the zoom levels supported by the tile source(s).
*   @param backgroundImage A custom background image to use behind the map instead of the default gridded tile background that moves with the map. 
*   @return An initialized map view, or `nil` if a map view was unable to be initialized. */
- (id)initWithFrame:(CGRect)frame
      andTilesource:(id <RMTileSource>)newTilesource
   centerCoordinate:(CLLocationCoordinate2D)initialCenterCoordinate
          zoomLevel:(float)initialTileSourceZoomLevel
       maxZoomLevel:(float)initialTileSourceMaxZoomLevel
       minZoomLevel:(float)initialTileSourceMinZoomLevel
    backgroundImage:(UIImage *)backgroundImage;

- (void)setFrame:(CGRect)frame;

+ (UIImage *)resourceImageNamed:(NSString *)imageName;

#pragma mark - Movement

/** @name Panning the Map */

/** The center coordinate of the map view. */
@property (nonatomic, assign) CLLocationCoordinate2D centerCoordinate;

/** The center point of the map represented as a projected point. */
@property (nonatomic, assign) RMProjectedPoint centerProjectedPoint;

/** Set the map center to a given coordinate. 
*   @param coordinate A coordinate to set as the map center. 
*   @param animated Whether to animate the change to the map center. */
- (void)setCenterCoordinate:(CLLocationCoordinate2D)coordinate animated:(BOOL)animated;

/** Set the map center to a given projected point. 
*   @param aPoint A projected point to set as the map center. 
*   @param animated Whether to animate the change to the map center. */
- (void)setCenterProjectedPoint:(RMProjectedPoint)aPoint animated:(BOOL)animated;

/** Move the map center by a given delta. 
*   @param delta A `CGSize` by which to move the map center. */
- (void)moveBy:(CGSize)delta;

#pragma mark - Zoom

/** @name Zooming the Map */

// minimum and maximum zoom number allowed for the view. #minZoom and #maxZoom must be within the limits of #tileSource but can be stricter; they are clamped to tilesource limits (minZoom, maxZoom) if needed.

/** The current zoom level of the map. */
@property (nonatomic, assign) float zoom;

/** The minimum zoom level of the map, clamped to the range supported by the tile source(s). */
@property (nonatomic, assign) float minZoom;

/** The maximum zoom level of the map, clamped to the range supported by the tile source(s). */
@property (nonatomic, assign) float maxZoom;

@property (nonatomic, assign) float tileSourcesZoom;
@property (nonatomic, assign) float tileSourcesMinZoom;
@property (nonatomic, assign) float tileSourcesMaxZoom;

@property (nonatomic, assign) RMProjectedRect projectedBounds;
@property (nonatomic, readonly) RMProjectedPoint projectedOrigin;
@property (nonatomic, readonly) RMProjectedSize projectedViewSize;

// recenter the map on #boundsRect, expressed in projected meters
- (void)setProjectedBounds:(RMProjectedRect)boundsRect animated:(BOOL)animated;

/** Set zoom level, optionally with an animation. 
*   @param newZoom The desired zoom level.
*   @param animated Whether to animate the map change. */
- (void)setZoom:(float)newZoom animated:(BOOL)animated;

/** Set both zoom level and center coordinate at the same time, optionally with an animation. 
*   @param newZoom The desired zoom level. 
*   @param newCenter The desired center coordinate. 
*   @param animated Whether to animate the map change. */
- (void)setZoom:(float)newZoom atCoordinate:(CLLocationCoordinate2D)newCenter animated:(BOOL)animated;

/** Zoom the map by a given factor near a certain point. 
*   @param zoomFactor The factor by which to zoom the map. 
*   @param center The point at which to zoom the map. 
*   @param animated Whether to animate the zoom. */
- (void)zoomByFactor:(float)zoomFactor near:(CGPoint)center animated:(BOOL)animated;

/** Zoom the map in at the next integral zoom level near a certain point. 
*   @param pivot The point at which to zoom the map. 
*   @param animated Whether to animate the zoom. */
- (void)zoomInToNextNativeZoomAt:(CGPoint)pivot animated:(BOOL)animated;

/** Zoom the map out at the next integral zoom level near a certain point.
*   @param pivot The point at which to zoom the map.
*   @param animated Whether to animate the zoom. */
- (void)zoomOutToNextNativeZoomAt:(CGPoint)pivot animated:(BOOL)animated;

/** Zoom the map to a given latitude and longitude bounds. 
*   @param southWest The southwest point to zoom to. 
*   @param northEast The northeast point to zoom to. 
*   @param animated Whether to animate the zoom. */
- (void)zoomWithLatitudeLongitudeBoundsSouthWest:(CLLocationCoordinate2D)southWest northEast:(CLLocationCoordinate2D)northEast animated:(BOOL)animated;

- (float)nextNativeZoomFactor;
- (float)previousNativeZoomFactor;

- (void)setMetersPerPixel:(double)newMetersPerPixel animated:(BOOL)animated;

#pragma mark - Bounds

/** @name Querying the Map Bounds */

/** The smallest bounding box containing the entire map view. */
- (RMSphericalTrapezium)latitudeLongitudeBoundingBox;

/** The smallest bounding box containing a rectangular region of the map view. 
*   @param rect A rectangular region. */
- (RMSphericalTrapezium)latitudeLongitudeBoundingBoxFor:(CGRect) rect;

- (BOOL)tileSourceBoundsContainProjectedPoint:(RMProjectedPoint)point;

/** @name Constraining the Map */

/** Contrain zooming and panning of the map view to a given coordinate boundary.
*   @param southWest The southwest point to constrain to.
*   @param northEast The northeast point to constrain to. */
- (void)setConstraintsSouthWest:(CLLocationCoordinate2D)southWest northEast:(CLLocationCoordinate2D)northEast;

- (void)setProjectedConstraintsSouthWest:(RMProjectedPoint)southWest northEast:(RMProjectedPoint)northEast;

#pragma mark - Snapshots

/** @name Capturing Snapshots of the Map View */

/** Take a snapshot of the map view. 
*
*   By default, the overlay containing any visible annotations is also captured.
*   @return An image depicting the map view. */
- (UIImage *)takeSnapshot;

/** Take a snapshot of the map view. 
*   @param includeOverlay Whether to include the overlay containing any visible annotations. 
*   @return An image depicting the map view. */
- (UIImage *)takeSnapshotAndIncludeOverlay:(BOOL)includeOverlay;

#pragma mark - Annotations

/** @name Annotating the Map */

/** The annotations currently added to the map. Includes user location annotations, if any. */
@property (nonatomic, readonly) NSArray *annotations;

/** The annotations currently visible on the map. May include annotations currently shown in clusters. */
@property (nonatomic, readonly) NSArray *visibleAnnotations;

/** Add an annotation to the map. 
*   @param annotation The annotation to add. */
- (void)addAnnotation:(RMAnnotation *)annotation;

/** Add one or more annotations to the map. 
*   @param annotations An array containing the annotations to add to the map. */
- (void)addAnnotations:(NSArray *)annotations;

/** Remove an annotation from the map. 
*   @param annotation The annotation to remove. */
- (void)removeAnnotation:(RMAnnotation *)annotation;

/** Remove one or more annotations from the map. 
*   @param annotations An array containing the annotations to remove from the map. */
- (void)removeAnnotations:(NSArray *)annotations;

/** Remove all annotations from the map. This does not remove user location annotations, if any. */
- (void)removeAllAnnotations;

/** The screen position for a given annotation. 
*   @param annotation The annotation for which to return the current screen position.
*   @return The screen position of the annotation. */
- (CGPoint)mapPositionForAnnotation:(RMAnnotation *)annotation;

#pragma mark - TileSources

@property (nonatomic, retain) RMQuadTree *quadTree;

/** @name Configuring Annotation Clustering */

/** Whether to enable clustering of map point annotations. Defaults to `NO`. */
@property (nonatomic, assign) BOOL enableClustering;

/** Whether to position cluster markers at the weighted center of the points they represent. If `YES`, position clusters in weighted fashion. If `NO`, position them on a rectangular grid. Defaults to `NO`. */
@property (nonatomic, assign) BOOL positionClusterMarkersAtTheGravityCenter;

/** Whether to order cluster markers above non-clustered markers. Defaults to `NO`. */
@property (nonatomic, assign) BOOL orderClusterMarkersAboveOthers;

@property (nonatomic, assign) CGSize clusterMarkerSize;
@property (nonatomic, assign) CGSize clusterAreaSize;

@property (nonatomic, readonly) RMTileSourcesContainer *tileSourcesContainer;

/** @name Managing Tile Sources */

/** The first tile source of a map view, ordered from bottom to top. */
@property (nonatomic, retain) id <RMTileSource> tileSource;

/** All of the tile sources for a map view, ordered bottom to top. */
@property (nonatomic, retain) NSArray *tileSources;

/** Add a tile source to a map view above the current tile sources. 
*   @param tileSource The tile source to add. */
- (void)addTileSource:(id <RMTileSource>)tileSource;

/** Add a tile source to a map view at a given index. 
*   @param tileSource The tile source to add. 
*   @param index The index at which to add the tile source. A value of zero adds the tile source below all other tile sources. */
- (void)addTileSource:(id<RMTileSource>)tileSource atIndex:(NSUInteger)index;

/** Remove a tile source from the map view. 
*   @param tileSource The tile source to remove. */
- (void)removeTileSource:(id <RMTileSource>)tileSource;

/** Remove the tile source at a given index from the map view. 
*   @param index The index of the tile source to remove. */
- (void)removeTileSourceAtIndex:(NSUInteger)index;

/** Move the tile source at one index to another index. 
*   @param fromIndex The index of the tile source to move. 
*   @param toIndex The destination index for the tile source. */
- (void)moveTileSourceAtIndex:(NSUInteger)fromIndex toIndex:(NSUInteger)toIndex;

/** Hide or show a tile source. 
*   @param isHidden A Boolean indicating whether to hide the tile source or not. 
*   @param tileSource The tile source to hide or show. */
- (void)setHidden:(BOOL)isHidden forTileSource:(id <RMTileSource>)tileSource;

/** Hide or show a tile source at a given index. 
*   @param isHidden A Boolean indicating whether to hide the tile source or not.
*   @param index The index of the tile source to hide or show. */
- (void)setHidden:(BOOL)isHidden forTileSourceAtIndex:(NSUInteger)index;

/** Reload the tiles for a given tile source. 
*   @param tileSource The tile source to reload. */
- (void)reloadTileSource:(id <RMTileSource>)tileSource;

/** Reload the tiles for a tile source at a given index. 
*   @param index The index of the tile source to reload. */
- (void)reloadTileSourceAtIndex:(NSUInteger)index;

#pragma mark - Cache

/** @name Managing Tile Caching Behavior */

/** The tile cache for the map view, typically composed of both an in-memory RMMemoryCache and a disk-based RMDatabaseCache. */
@property (nonatomic, retain)   RMTileCache *tileCache;

/** Clear all tile images from the caching system. */
-(void)removeAllCachedImages;

#pragma mark - Conversions

// projections to convert from latitude/longitude to meters, from projected meters to tile coordinates
@property (nonatomic, readonly) RMProjection *projection;
@property (nonatomic, readonly) id <RMMercatorToTileProjection> mercatorToTileProjection;

/** @name Converting Map Coordinates */

/** Convert a projected point to a screen location. 
*   @param projectedPoint The projected point to convert. 
*   @return The equivalent screen location. */
- (CGPoint)projectedPointToPixel:(RMProjectedPoint)projectedPoint;

/** Convert a coordinate to a screen location. 
*   @param coordinate The coordinate to convert. 
*   @return The equivalent screen location. */
- (CGPoint)coordinateToPixel:(CLLocationCoordinate2D)coordinate;

/** Convert a screen location to a projected point. 
*   @param pixelCoordinate A screen location to convert.
*   @return The equivalent projected point. */
- (RMProjectedPoint)pixelToProjectedPoint:(CGPoint)pixelCoordinate;

/** Convert a screen location to a coordinate.
*   @param pixelCoordinate A screen location to convert. 
*   @return The equivalent coordinate. */
- (CLLocationCoordinate2D)pixelToCoordinate:(CGPoint)pixelCoordinate;

/** Convert a coordiante to a projected point. 
*   @param coordinate A coordinate to convert. 
*   @return The equivalent projected point. */
- (RMProjectedPoint)coordinateToProjectedPoint:(CLLocationCoordinate2D)coordinate;

/** Convert a projected point to a coordinate. 
*   @param projectedPoint A projected point to convert. 
*   @return The equivalent coordinate. */
- (CLLocationCoordinate2D)projectedPointToCoordinate:(RMProjectedPoint)projectedPoint;

- (RMProjectedSize)viewSizeToProjectedSize:(CGSize)screenSize;
- (CGSize)projectedSizeToViewSize:(RMProjectedSize)projectedSize;

- (CLLocationCoordinate2D)normalizeCoordinate:(CLLocationCoordinate2D)coordinate;
- (RMTile)tileWithCoordinate:(CLLocationCoordinate2D)coordinate andZoom:(int)zoom;

/** Return the bounding box for a given map tile. 
*   @param aTile A map tile. 
*   @return The bounding box for the tile in the current projection. */
- (RMSphericalTrapezium)latitudeLongitudeBoundingBoxForTile:(RMTile)aTile;

#pragma mark -
#pragma mark User Location

/** @name Tracking the User Location */

/** A Boolean value indicating whether the map may display the user location.
*
*   This property does not indicate whether the user’s position is actually visible on the map, only whether the map view is allowed to display it. To determine whether the user’s position is visible, use the userLocationVisible property. The default value of this property is `NO`.
*
*   Setting this property to `YES` causes the map view to use the Core Location framework to find the current location. As long as this property is `YES`, the map view continues to track the user’s location and update it periodically. */
@property (nonatomic, assign)   BOOL showsUserLocation;

/** The annotation object representing the user’s current location. (read-only) */
@property (nonatomic, readonly) RMUserLocation *userLocation;

/** A Boolean value indicating whether the device’s current location is visible in the map view. (read-only)
*
*   This property uses the horizontal accuracy of the current location to determine whether the user’s location is visible. Thus, this property is `YES` if the specific coordinate is offscreen but the rectangle surrounding that coordinate (and defined by the horizontal accuracy value) is partially onscreen.
*
*   If the user’s location cannot be determined, this property contains the value `NO`. */
@property (nonatomic, readonly, getter=isUserLocationVisible) BOOL userLocationVisible;

/** The mode used to track the user location. */
@property (nonatomic, assign)   RMUserTrackingMode userTrackingMode;

/** Whether the map view should display a heading calibration alert when necessary. The default value is `YES`. */
@property (nonatomic, assign)   BOOL displayHeadingCalibration;

/** Set the mode used to track the user location. 
*   @param mode The mode used to track the user location. 
*   @param animated Whether changes to the map center or rotation should be animated when the mode is changed. */
- (void)setUserTrackingMode:(RMUserTrackingMode)mode animated:(BOOL)animated;

@end