VenueDrawingSelectionDelegate
public protocol VenueDrawingSelectionDelegate : AnyObject
The protocol for delegates for
the VenueDrawing selection event. Use the VenueMap
to add and remove the VenueDrawingSelectionDelegate.
-
Indicates that new
VenueDrawinghas been selected.Declaration
Swift
func onDrawingSelected(venue: Venue, deselectedDrawing: VenueDrawing?, selectedDrawing: VenueDrawing)Parameters
venueThe
Venuewhere a selected drawing was changed.deselectedDrawingThe previously selected
VenueDrawingobject ornilif there was no selected drawing before.selectedDrawingThe new selected
VenueDrawingobject.