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

Function layerObj_queryByFeatures

mapscript/php/mapscript_i.c:574–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

572 }
573
574int layerObj_queryByFeatures(layerObj *self, mapObj *map, int slayer) {
575 int status;
576 int retval;
577
578 map->query.slayer = slayer;
579 map->query.layer = self->index;
580
581 status = self->status;
582 self->status = MS_ON;
583 retval = msQueryByFeatures(map);
584 self->status = status;
585
586 return retval;
587 }
588
589int layerObj_queryByShape(layerObj *self, mapObj *map, shapeObj *shape) {
590 int status;

Callers 1

layer.cFile · 0.85

Calls 1

msQueryByFeaturesFunction · 0.85

Tested by

no test coverage detected