name="limit" value="{api_request_params.limit || ''}" />
<input type="hidden"
name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
+ <input type="hidden"
+ name="layer" value="{api_request_params.layer || ''}" />
</div>
</UrlSubmitForm>
</div>
name="limit" value="{api_request_params.limit || ''}" />
<input type="hidden"
name="polygon_threshold" value="{api_request_params.polygon_threshold || ''}" />
+ <input type="hidden"
+ name="layer" value="{api_request_params.layer || ''}" />
</div>
</UrlSubmitForm>
</div>
pattern="^[a-zA-Z]{'{2}'}(,[a-zA-Z]{'{2}'})*$"
on:change={set_api_param}>
</li>
+ <li>
+ <label for="option_layer">Layer</label>
+ <input id="option_layer" name="layer" placeholder="e.g. address,poi,railway,natural,manmade"
+ value="{api_request_params.layer || ''}"
+ data-api-param="layer" on:change={set_api_param}
+ class="form-control form-control-sm d-inline w-auto api-param-setting">
+ </li>
</ul>
</details>
dedupe: (!search_params.has('dedupe') || search_params.get('dedupe') === '1') ? 1 : 0,
'accept-language': search_params.get('accept-language'),
countrycodes: search_params.get('countrycodes'),
+ layer: search_params.get('layer'),
limit: search_params.get('limit'),
polygon_threshold: search_params.get('polygon_threshold'),
exclude_place_ids: search_params.get('exclude_place_ids'),