We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b21dfe4 commit 256464eCopy full SHA for 256464e
src/Provider/Photon/Readme.md
@@ -53,9 +53,9 @@ You can combine multiple osm tag filters :
53
```php
54
$provider = new Geocoder\Provider\Photon\Photon($httpClient, 'https://your-photon-root-url');
55
$reverseQuery = \Geocoder\Query\GeocodeQuery::create('Paris')
56
- ->withData('osm_tag', ['tourism', ':!museum'])
+ ->withData('osm_tag', ['tourism:museum', 'tourism:gallery'])
57
->withLimit(5);
58
-// Here we get 5 tourism results in Paris which are not museums
+// Here we get 5 tourism results in Paris which are either museum or art gallery
59
$results = $provider->reverseQuery($reverseQuery);
60
```
61
0 commit comments