We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently using the V6ForwardGeocodingRequestOptions methods as such:
query = "italian restaurants"; location = "buffalo ny"; var requestOptions = V6ForwardGeocodingRequestOptions.builder("italian restaurants in buffalo ny") .autocomplete(false) .build(); var newStuff = MapboxV6Geocoding.builder(token, requestOptions).build();
Sample Response when I get the name from the Feature object:
"North Buffalo"
This search is not giving me the same results as in v5. Sample V5 Request:
var client = MapboxGeocoding.builder() .accessToken(token) .mode(GeocodingCriteria.MODE_PLACES) .query("italian restaurants in buffalo ny") .autocomplete(true) .build();
Sample response:
Romeo & Juliet's Bakery & Caffé, 1292 Hertel Ave, Buffalo, New York 14216, United States Is there an equivalent request in V6 as there was in V5?
Romeo & Juliet's Bakery & Caffé, 1292 Hertel Ave, Buffalo, New York 14216, United States
Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently using the V6ForwardGeocodingRequestOptions methods as such:
Sample Response when I get the name from the Feature object:
"North Buffalo"
This search is not giving me the same results as in v5.
Sample V5 Request:
Sample response:
Romeo & Juliet's Bakery & Caffé, 1292 Hertel Ave, Buffalo, New York 14216, United States
Is there an equivalent request in V6 as there was in V5?
Thank you!
The text was updated successfully, but these errors were encountered: