Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GraphHopper] Add provider parameter #1251

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

bisleadity
Copy link

@bisleadity bisleadity commented Mar 21, 2025

Graphhopper geocoding now supports different providers. Hereby the option is given to use those providers.

As we do need to use one of those providers and there was no possibility given so far I added it.

Copy link
Member

@jbelien jbelien left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a feature still in development.

The provider parameter is currently under development and can fall back to default at any time.
-- https://docs.graphhopper.com/openapi/geocoding/getgeocode#geocoding/getgeocode/t=request&in=query&path=provider

Comment on lines +77 to +80
$provider = $query->getData('provider');
if (is_string($provider) && '' !== $provider) {
$url .= sprintf('&provider=%s', urlencode($provider));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe worth creating an enum with the list of available providers?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does all providers return the necessary result?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Enum would be no problem, but when the list expands another PR has to be made.

What do you mean by 'Does all providers return the necessary result?'. We do need one specific provider that works best for our case

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you mean by 'Does all providers return the necessary result?'. We do need one specific provider that works best for our case

Is the response from GraphHopper different if we select a provider other than 'default'? Just to know if we need to implement specific logic if we choose another provider than the default one.

Copy link
Author

@bisleadity bisleadity Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested a little and the response seems to be quiety different depending on the address searched. Latitude and longitude are always present. But there are parameters , which are set depending on provider but as well the search string. So I'm not sure if its really useful to add them. However, the main address attributes such as city, country, street or postcode seem to be the same for all providers.

One question: I was already wondering why the classes are made final if not so a user could extend e.g. the GraphHopper provider and Address Model to add properties if needed.

Copy link
Author

@bisleadity bisleadity Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As the enum feature is supported since php 8.1 but code has to be valid for php 8.0 as well, I will remove it again. Do you have another suggestion?

Graphhopper geocoding supports different providers. Hereby the option is
given to use those providers.
@bisleadity bisleadity force-pushed the feature/graphhopper-add-provider branch from 8fedd22 to 4d66689 Compare March 24, 2025 09:35
@bisleadity bisleadity requested a review from jbelien March 27, 2025 12:25
…aphHopper geocoding api

Graphhopper geocoding supports different providers. Hereby the option is given to use only available providers.

[GraphHopper] Add GraphHopperProviders enum for provider options of GraphHopper geocoding api

Graphhopper geocoding supports different providers. Hereby the option is given to use only available providers.
@bisleadity bisleadity force-pushed the feature/graphhopper-add-provider branch from 0fbc0e1 to 320b5d7 Compare March 28, 2025 09:16
…ns of GraphHopper geocoding api"

This reverts commit 320b5d7.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants