wikidataQIDs method

List<String> wikidataQIDs(
  1. double? lon,
  2. double? lat,
  3. List<double>? bbox
)

Returns all the Wikidata QIDs of regions at the location.

Implementation

List<String> wikidataQIDs(double? lon, double? lat, List<double>? bbox) {
  return _propertiesForQuery(lon, lat, bbox, (r) => r.wikidata);
}