search method

  1. @override
List<ImmutableLayerElement<T>> search(
  1. double westLng,
  2. double southLat,
  3. double eastLng,
  4. double northLat,
  5. int zoom,
)
override

Implementation

@override
List<ImmutableLayerElement<T>> search(
  double westLng,
  double southLat,
  double eastLng,
  double northLat,
  int zoom,
) {
  zoom = _limitZoom(zoom);
  return _trees[zoom]!.search(westLng, southLat, eastLng, northLat);
}