Is it possible for the HERE maps geocode to also store the postcode?
It only grabs it as part of the 'address' response and never actually gets the 'postalcodenumber' response.
Example:
Code: Select all
{ "id": 69, "result": { "reverseGeocodeResult": { "numRequested": 1, "status": "OK", "gcProviderSource": "HERE(1)", "locations": [{ "id": 0, "pos": { "lng": -1.29226, "lat": 53.29612, "alt": 0 }, "countryName": "United Kingdom", "cityName": "Chesterfield", "postalCodeNumber": null, "streetBox": null, "streetName": "M1", "streetNumber": null, "address": "M1, Chesterfield, S43 4, United Kingdom", "administrativeAreaName": "Derbyshire", "subAdministrativeAreaName": null, "pointOfInterest": null, "description": null, "neighborhood": "Barlborough", "categoryId": 0, "formattedResult": "M1, Chesterfield, S43 4, United Kingdom" }], "resultMap": [[0]] }, "__type": "Franson.Geo.Geocoding.ReverseGeocodeResult", "queryTimeStamp": new Date(1541744849352), "__result": "reverseGeocodeResult" } }
Cheers