Im using an API called govmap https://api.govmap.gov.il/#intersect-features , this is the function that sending the response to the devtool:
THIS FUNCTION IS IN <-head-> --> on index.html
function showExample() {
var params = {
type: govmap.locateType.lotParcelToAddress,
address: 'jerusalem 21, tel aviv'
}
govmap.searchAndLocate(params).then(function (response) {
console.log(response)
});
}
I want to filter the response (screenshot added with picture at the beggining) so the output will only INCLUDES Values who's in data .
any Suggestions?