MSFVectorTileFeature
Objective-C
@interface MSFVectorTileFeature : MSFFeature
Swift
class MSFVectorTileFeature : MSFFeature
A vector tile feature consisting of id, layer, geometry and properties.
-
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.
-
Constructs a VectorTileFeature object from id, layer name, geometry and properties.
Declaration
Objective-C
- (id)initWithArg0:(long long)arg0 mapTile:(MSFMapTile *)mapTile layerName:(NSString *)layerName geometry:(MSFGeometry *)geometry properties:(MSFVariant *)properties;Swift
init!(arg0: Int64, mapTile: MSFMapTile!, layerName: String!, geometry: MSFGeometry!, properties: MSFVariant!)Parameters
idThe id of the feature.
mapTileThe map tile of this feature
layerNameThe name of the layer of the feature.
geometryThe geometry of the feature.
propertiesThe properties of the feature.
-
Returns the id of the feature.
Declaration
Objective-C
- (long long)getId;Swift
func getId() -> Int64Return Value
The id of the feature.
-
Returns the map tile of the feature.
Return Value
The map tile of the feature.
-
Returns the layer name of the feature.
Declaration
Objective-C
- (NSString *)getLayerName;Swift
func getLayerName() -> String!Return Value
The layer name of the feature.
-
Undocumented
Declaration
Objective-C
-(double)getDistance;Swift
func getDistance() -> Double -
Undocumented
Declaration
Objective-C
-(void)setDistance: (double)value;Swift
func setDistance(_ value: Double) -
Undocumented
Declaration
Objective-C
-(void)dealloc;Swift
func dealloc()