Get ISO 3166-2 Code from HERE Geocoder API - here-api

Is there a way to get the ISO 3166-2 Code for a specific PostalCode/CountryCode Combination with the HERE Geocoder API?
Per Example:
1210/AT => AT-9

Unfortunately the HERE Geocoder does not expose this information in the response.

Related

HERE Geocode Autocomplete no Unit/Apt No

I am not getting the Unit Number in response structure as mentioned in the API Documentation,
"For addresses from Australia, New Zealand and Canada a unit number can be included in the result if it was part of the query."
I am using autocomplete geocoder for NZ.
I tried to change the requestType but no help. API is not so clear on how to request Unit Number.
Got it. Actually, when we type the unit/housenumber in the query it actully brings the Unit number.

What are names of values for outcols param for linkInfo locationattribute in HERE batch geocoder API?

I have a project where we have to fetch large amounts of speed limits from lat, lng, bearing values.
Currently, we are using HERE multi-reverse geocoder API, but it turned out that limit of 100 locations in one request is too few for us.
And the question is:
Is there any way to include speedCategory / speedLimit in here batch
geocoder API (same as
Response.Item.Result.Location.LinkInfo.SpeedCategory/SpeedLimit in
multi-revers API respones with locationattributes=linkInfo)?
Or maybe there is some kind of documentation describing how to
translate here geocoder response to here batch geocoder outcols param values?
LinkInfo (incl. speed limits) is not supported by Batch Geocoder. See https://developer.here.com/documentation/batch-geocoder/topics/read-batch-request-output.html for the list of supported output fields.

HERE Geocoder Autocomplete API

I am using the HERE Geocoder Autocomplete API. It works perfectly well but I would like to know :
How can I specify a minimum matching level like "street" or "city" so it won't return me the result with a matchLevel of "state" or "county" ?
Geocoder Autocomplete API currently doesn't support restriction at matchLevel. You can explain your usecase in detail so that we can suggest alternatives if possible.

Batch Geocoder API, how to get extra road attributes

Using the Batch reverse-Geocoder API, is it possible to get additional road attributes, like:
SpeedLimit
LinkFlags
SideOfStreet
Thanks!
For getting the side of street you have to first add parameter
locationattributes=mapReference
and request the output field
mapReferenceSideOfStreet
in the outcols parameter.
Example:
&locationattributes=mapReference&outcols=city,district,street,mapReferenceSideOfStreet

Adding google maps markers by an address instead of coordinates?

In my Flex project, can I add markers by its address instead of this:
var myGeographicCoordinates:LatLng = new LatLng(myLatitude, myLongitude);
for example add marker by "Paris, France"
I don't think you can do so directly. Instead you need to geocode the address and then use a LatLng to store the result.
Check out google's geocoding api here:
http://code.google.com/apis/maps/documentation/geocoding/
You should read Google's developer manual on Geocoding. It explains how to convert an address to a geolocation. I recommend you try looking at the Dev manual/API/Google before posting here.

Resources