0

Problem: I want to tell if the access road to an US address includes dirt or paved road(like if it is in a remote area without proper road). If it is a dirty road we charge more to the customer for delivery.

In technical terms - The input is going to be a house address and I need to find out if the way to it involves dirt road.

I am ok with making multiple calls to get the complete information. What steps do I need to take?

Nimantha
  • 6,405
  • 6
  • 28
  • 69
Raghu Varma
  • 131
  • 3
  • 5

1 Answers1

0

In general, you will probably need two steps:

  1. Use HERE Routing API to calculate the route between the two locations. It will return the path information.
  2. Get the road attribute from one of the following content sources, such as Map Attribute API, Road Physical Attributes in HERE Map Content.
Nimantha
  • 6,405
  • 6
  • 28
  • 69