MCPcopy Index your code
hub / github.com/MapServer/MapServer / mapObj_queryByPoint

Function mapObj_queryByPoint

mapscript/php/mapscript_i.c:162–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162int mapObj_queryByPoint(mapObj* self, pointObj *point, int mode, double buffer) {
163 msInitQuery(&(self->query));
164
165 self->query.type = MS_QUERY_BY_POINT;
166 self->query.mode = mode;
167 self->query.point = *point;
168 self->query.buffer = buffer;
169
170 return msQueryByPoint(self);
171 }
172
173int mapObj_queryByRect(mapObj* self, rectObj rect) {
174 msInitQuery(&(self->query));

Callers 1

map.cFile · 0.85

Calls 2

msInitQueryFunction · 0.85
msQueryByPointFunction · 0.85

Tested by

no test coverage detected