appleMapsAnnotation property

Annotation appleMapsAnnotation

Implementation

appleMaps.Annotation get appleMapsAnnotation => appleMaps.Annotation(
      annotationId: this.markerId.appleMapsAnnoationId,
      alpha: this.alpha,
      draggable: this.draggable,
      infoWindow: this.infoWindow.appleMapsInfoWindow,
      onTap: this.onTap,
      icon: this.icon?.bitmapDescriptor ??
          BitmapDescriptor.defaultMarker?.bitmapDescriptor,
      visible: this.visible,
      onDragEnd: this.onDragEnd != null
          ? (appleMaps.LatLng latLng) =>
              _onAppleAnnotationDragEnd(latLng, this.onDragEnd)
          : null,
      position: this.position.appleLatLng,
    );