searchByPlaceId abstract method

TaskHandle searchByPlaceId(
  1. PlaceIdQuery query,
  2. LanguageCode? languageCode,
  3. PlaceIdSearchCallback callback
)

Performs an asynchronous search for a Place based on its ID and LanguageCode.

  • query The id of place to search.

  • languageCode The preferred language for the search results. When unset or unsupported language is chosen, results will be returned in their local language.

  • callback Callback which receives the result on the main thread.

Returns TaskHandle. Handle that will be used to manipulate the execution of the task.

Implementation

TaskHandle searchByPlaceId(PlaceIdQuery query, LanguageCode? languageCode, PlaceIdSearchCallback callback);