reverse_resolve


Description:

public abstract List<Place> reverse_resolve (HashTable<string,Value?> @params, Cancellable? cancellable = null) throws Error

Gets the result of a reverse geocoding query using the this.

If no result could be found, a geocode_error_not_supported error will be returned. This typically happens if the coordinates to geocode are in the middle of the ocean.

This is a synchronous function, which means it may block on network requests. In most situations, the asynchronous version, forward_search_async, is more appropriate. See its documentation for more information on usage.

Parameters:

this

a Backend.

cancellable

optional Cancellable object, null to ignore.

params

a GenericSet with string keys, and Value values.

Returns:

A list of Place instances, or null in case of errors. The list is ordered by relevance, with most relevant results first. Free the returned instances with unref and the list with g_list_free when done.