<!--
{
  "availability" : [
    "iOS: 10.0.0 -",
    "iPadOS: 10.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 3.2.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INListRideOptionsIntentHandling/resolveDropOffLocation(for:with:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INListRideOptionsIntentHandling(im)resolveDropOffLocationForListRideOptions:withCompletion:"
  },
  "title" : "resolveDropOffLocation(for:with:)"
}
-->

# resolveDropOffLocation(for:with:)

Resolves the user’s drop-off location.

```
optional func resolveDropOffLocation(for intent: INListRideOptionsIntent, with completion: @escaping @Sendable (INPlacemarkResolutionResult) -> Void)
```

## Parameters

`intent`

The intent object containing details about the user’s request. Use this object to get the initial information provided by the user.

`completion`

The block to execute with the resolution. This block has no return value and takes the following parameter:

- resolutionResult: The object containing the details of your proposed resolution. For successful resolutions, create a resolution object with the <doc://com.apple.documentation/documentation/CoreLocation/CLPlacemark> object with the user’s requested drop-off location. This parameter must not be `nil`.

## Discussion

Implement this method to verify that you are able to drop off the user at the specified location. If you are unable to drop off the user at the requested location, you can provide a nearby location and ask the user to confirm the new value. You can also provide other resolutions as appropriate.

If you do not implement this method, SiriKit assumes you are able to drop off the user at the specified location.

Maps does not call this method. The Maps interface lets the user specify the drop-off location explicitly, making resolution of that value unnecessary.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)