Navigating with HERE Maps allows you to view all the places along your entire

I've encountered an issue while using the HERE corridor API. When searching for a long route with multiple restaurants clustered together in one place, the API only returns a maximum of 1000 records at that location.

Is there a way to limit the results to, let's say, 10 records per place so I can explore different locations along the entire route?

I attempted adjusting the width of the route and using the category filter for 'restaurant'. However, this method still retrieves too many restaurant records, mainly focusing on those near the starting point rather than spread throughout the journey to the destination. While I acknowledge the practical limitation due to the abundance of restaurant data, I am curious if there are any possible solutions or workarounds available.

In essence, my goal is to discover various places all along the route.

Your assistance is greatly appreciated. Thank you.

Answer №1

For more information, please check out the following link: {app_id}&app_code={app_code}

Make sure to include your app identifier and code when using this link. Apologies for not being able to leave a comment, so I posted it here instead.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Tips on how to patiently wait until the database connection is established and all queries are successfully executed for every database specified in an array

A file containing JSON data with database details needs to execute a series of queries for each database connection. The map function is currently waiting for the database connection. Below is the start function function start() { console.log('func ...

Securing confidential information within Vuex

In summary, we have implemented Vue on the front-end and Hapi JS on the back-end. The front end utilizes MSAL.js for user authentication, passing an access token to the back-end. The access token is decoded using hapi-auth-jwt2, with the validate() functio ...

Using jQuery to eliminate the 'disabled' attribute from CSS

After using the .val() method to enter data into a text box, I noticed that when trying to click "add", the button appears disabled. <input class="btn-primary action-submit" type="submit" value="Add" disabled=""> If I manually type in text, the dis ...

Is there a way to create a Vue component that can process dynamic formulas similar to those used in

I am looking to create a component that has the ability to accept different formulas for computing the last column. The component should use these formulas in Vuex getters to store the total state values passed to it. Here are the specifications for the c ...

Here is an example of how to transfer a value from PHP to a jQuery function in the code snippet provided

This is an example of my code. It is functioning properly even without passing a value. function displayMessage(text) { alert(text); } <button type="button" id="button" class="btn btn-success" onclick="displayMessage("Hello");"> Click Me </ ...

What is the best way to access all of the "a" elements contained within this specific div?

Chrome websites are built using the following structure: <div class="divClass"> <a class="aClass"></a> <a class="aClass"></a> <a class="aClass"></a> </div> Utili ...

Setting an Alias for AVA Tests: A Step-by-Step Guide

I need to set up global aliases in my project without using Webpack or Babel. Currently, I am testing with AVA. The npm package module-alias allows me to define aliases in my package.json file. However, when I try to create a basic example following the d ...

Create a simple carousel using only vanilla JavaScript, without relying on any external plugins

Currently, I am working on implementing a carousel using plain JavaScript without the use of any plugins. My goal is to have previous and next buttons that will control the sliding images. var firstval = 0; function ...

How can you condense an if/else statement in JavaScript into one line?

When searching the DOM using $(current_form).find('input').data('option'), the result can either be undefined or a string of options like 'x|y|z'. To handle this, I typically split the string by calling split('|') to ...

What are the methods to alter validation for a Formfield based on the input from other Formfields?

My aim is to create a Form where input fields are required only if one or more of them are filled out. If none of the fields have been filled, then no field should be mandatory. I came across a suggestion on a website that recommended using "valueChanges" ...

google visualization api - displaying multiple y-axis values for a single date on x-axis

I have a dataset that I need to graph with some given values. Here is how my data is structured... (Date on the x-axis and Values on the y-axis) || Date || X1 || X2 || X3 || || 01-01-2008 || 1 || 2 || 3 || || 01-01-2008 || 2 || 3 || 4 || ...

Can I expect the same order of my associative array to be preserved when transitioning from PHP to Javascript?

While using PHP, I am executing a mysql_query with an ORDER BY clause. As a next step, I am going through the results to construct an associative array where the row_id is set as the key. After that, I am applying json_encode on that array and displaying ...

Sorting a function with two parameters in descending order is possible even when dealing with an empty array and no initial value for reduction

My npm test is not passing the third out of six tests. I have attempted to sort it using the following code snippet: sumAll.sort(function(min,max)) { return max - min; } However, this approach did not work. I also tried incorporating conditionals in t ...

Is it advisable to implement JSON along with adhering to the best practices for utilizing JSON data

As I work on developing a Silverstripe website, I have come across the need for an interactive map similar to the one found here - Currently, I am using AJAX to retrieve information for each object, such as days, price, pass name, etc. This works well, bu ...

Guide to making a REST API call using ReactJS

React Code Snippet componentDidMount(){ fetch('http://localhost:8080/ulearn/rest/course/getAll') .then(result=> { this.setState({items:result.json()}); });} Encountered an issue while attempting to make a REST ...

Having trouble with my jQuery AJAX query not sending data to my PHP file

Today has been a day filled with attempts to send a jQuery variable to my PHP file in order to use it in an SQL search. I'm encountering two main issues - first, getting the variable into PHP correctly and second, facing an error related to my SQL cod ...

Retrieve the response status using a promise

There is a promise in my code that sometimes results in an error response (either 400 or 403, depending on the user). I am trying to handle this situation by catching the response and implementing a conditional logic to execute different functions based on ...

Retrieve all attributes of an element with the help of jQuery

I am attempting to extract all the attributes of an element and display their names and values. For instance, an img tag may have multiple unknown attributes that I need to access. My initial idea is as follows: $(this).attr().each(function(index, element ...

The keyframes animation for the navigation bar will not restart from a different location

I've been working on creating a CSS keyframes animation for a navigation bar, and I'm encountering some issues. The animation involves a red line moving when a user clicks on a nav bar element. By default, the first element is active (red line un ...

Using *ngIf to construct SVG icons in Angular 2 doesn't contribute to the DOM in any way

I am currently utilizing icoMoon to import a series of SVG icons. The structure of the html I'm trying to create using ngIf is as follows: <div class="contactIcon"> <svg class="icon icon-envelop"> <use xlink:href="symbol-d ...