searchByWords abstract method

TaskHandle searchByWords(
  1. String words,
  2. W3WSearchCallback callback
)

Performs an asynchronous request to search for a W3WSquare that corresponds to the given 3 words.

  • words A 3 word address as a string. It must be three words separated with dots or a japanese middle dot character (・). Words separated by spaces will be rejected. Optionally, the 3 word address can be prefixed with ///.

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

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

Implementation

TaskHandle searchByWords(String words, W3WSearchCallback callback);