1 | /* |
---|---|
2 | SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.0-or-later |
5 | */ |
6 | |
7 | #ifndef SPATIALINDEX_H |
8 | #define SPATIALINDEX_H |
9 | |
10 | #include "spatial_index_property_p.h" |
11 | |
12 | /*! |
13 | * Spatial index lookup functions |
14 | * \internal |
15 | */ |
16 | namespace SpatialIndex |
17 | { |
18 | SpatialIndexProperty lookup(float lat, float lon); |
19 | } |
20 | |
21 | #endif // SPATIALINDEX_H |
22 |