MSFMapInteractionInfo
Objective-C
@interface MSFMapInteractionInfo : NSObject {
void *swigCPtr;
BOOL swigCMemOwn;
}
Swift
class MSFMapInteractionInfo : NSObject
A container class that provides information about a map interaction performed from UI.
-
Checks if this object is equal to the specified object.
Declaration
Objective-C
- (BOOL)isEqual:(id)object;Swift
func isEqual(_ object: Any!) -> BoolParameters
objectThe reference object.
Return Value
True when objects are equal, false otherwise.
-
Returns the hash value of this object.
Declaration
Objective-C
- (NSUInteger)hash;Swift
func hash() -> UIntReturn Value
The hash value of this object.
-
Returns true if the interaction included a map pan action.
Declaration
Objective-C
- (BOOL)isPanAction;Swift
func isPanAction() -> BoolReturn Value
True if the interaction included a map pan action.
-
Returns true if the interaction included a zoom action.
Declaration
Objective-C
- (BOOL)isZoomAction;Swift
func isZoomAction() -> BoolReturn Value
True if the interaction included a zoom action.
-
Returns true if the interaction included a rotate action.
Declaration
Objective-C
- (BOOL)isRotateAction;Swift
func isRotateAction() -> BoolReturn Value
True if the interaction included a rotate action.
-
Returns true if the interaction included a tilt action.
Declaration
Objective-C
- (BOOL)isTiltAction;Swift
func isTiltAction() -> BoolReturn Value
True if the interaction included a tilt action.
-
Returns true if the interaction has started an animation.
Declaration
Objective-C
- (BOOL)isAnimationStarted;Swift
func isAnimationStarted() -> BoolReturn Value
True if the interaction has started an animation.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()