Skip to content
New issue

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

HERE provider: add stateCode property #266

Closed
wants to merge 1 commit into from
Closed

Conversation

ruscon
Copy link
Contributor

@ruscon ruscon commented Feb 14, 2019

search address: 1200 E 89th St, Chicago, IL 60619, USA

HERE provider response:

{
  "Response": {
    "MetaInfo": {
      "Timestamp": "2019-02-14T22:22:52.180+0000"
    },
    "View": [
      {
        "_type": "SearchResultsViewType",
        "ViewId": 0,
        "Result": [
          {
            "Relevance": 0.99,
            "MatchLevel": "houseNumber",
            "MatchQuality": {
              "City": 1,
              "Street": [
                1
              ],
              "HouseNumber": 0.98
            },
            "MatchType": "interpolated",
            "Location": {
              "LocationId": "NT_.4F.1wbQ1kZP.RMjIh-x1A_xETO4A",
              "LocationType": "point",
              "DisplayPosition": {
                "Latitude": 41.7332549,
                "Longitude": -87.5953225
              },
              "NavigationPosition": [
                {
                  "Latitude": 41.73312,
                  "Longitude": -87.5953225
                }
              ],
              "MapView": {
                "TopLeft": {
                  "Latitude": 41.734379,
                  "Longitude": -87.5968289
                },
                "BottomRight": {
                  "Latitude": 41.7321307,
                  "Longitude": -87.5938161
                }
              },
              "Address": {
                "Label": "1198 E 89th St, Chicago, IL 60619, United States",
                "Country": "USA",
                "State": "IL",
                "County": "Cook",
                "City": "Chicago",
                "District": "Burnside",
                "Street": "E 89th St",
                "HouseNumber": "1198",
                "PostalCode": "60619",
                "AdditionalData": [
                  {
                    "value": "United States",
                    "key": "CountryName"
                  },
                  {
                    "value": "Illinois",
                    "key": "StateName"
                  },
                  {
                    "value": "Cook",
                    "key": "CountyName"
                  },
                  {
                    "value": "N",
                    "key": "PostalCodeType"
                  }
                ]
              }
            },
            "AdditionalData": [
              {
                "value": "true",
                "key": "houseNumberFallback"
              },
              {
                "value": "2",
                "key": "houseNumberFallbackDifference"
              }
            ]
          }
        ]
      }
    ]
  }
}

expected result:

[
  {
    "formattedAddress": "1198 E 89th St, Chicago, IL 60619, United States",
    "latitude": 41.7332549,
    "longitude": -87.5953225,
    "country": "United States",
    "countryCode": "US",
    "state": "Illinois",
    "stateCode": "IL", <--- new property
    "county": "Cook",
    "city": "Chicago",
    "zipcode": "60619",
    "district": "Burnside",
    "streetName": "E 89th St",
    "streetNumber": "1198",
    "building": null,
    "extra": {
      "herePlaceId": "NT_.4F.1wbQ1kZP.RMjIh-x1A_xETO4A",
      "confidence": 0.99
    },
    "administrativeLevels": {
      "level1long": "Illinois",
      "level2long": "Cook"
    },
    "provider": "here"
  }
]

actual result:

[
  {
    "formattedAddress": "1198 E 89th St, Chicago, IL 60619, United States",
    "latitude": 41.7332549,
    "longitude": -87.5953225,
    "country": "United States",
    "countryCode": "US",
    "state": "Illinois",
    // "stateCode": "IL", <------- undefined 
    "county": "Cook",
    "city": "Chicago",
    "zipcode": "60619",
    "district": "Burnside",
    "streetName": "E 89th St",
    "streetNumber": "1198",
    "building": null,
    "extra": {
      "herePlaceId": "NT_.4F.1wbQ1kZP.RMjIh-x1A_xETO4A",
      "confidence": 0.99
    },
    "administrativeLevels": {
      "level1long": "Illinois",
      "level2long": "Cook"
    },
    "provider": "here"
  }
]

@ruscon ruscon changed the title HERE provider: add stateCode field HERE provider: add stateCode property Feb 14, 2019
@ruscon
Copy link
Contributor Author

ruscon commented Feb 14, 2019

PS. my tests work.
Bug in the mapquestgeocoder :)

@ruscon ruscon force-pushed the master branch 2 times, most recently from 46e6369 to 03a4075 Compare February 14, 2019 23:42
@ruscon
Copy link
Contributor Author

ruscon commented Feb 15, 2019

@nchaulet ?

@ruscon ruscon closed this Feb 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant