Here api 将相同的地理位置返回到不同的地址,如何解决?

Here api 将相同的地理位置返回到不同的地址,如何解决?,here-api,Here Api,这两个地址之间的唯一区别是号码(门牌号)。 请求\u 1: {app_id}&app_code={app_code}&countryfocus=BRA&country=BRA&street=AVENIDA VEREADOR EDENITES DA SILVA VIANA&门牌号=244&city=São Francisco de Itabapoana&district=CENTRO&postalcode=2830000&state=RJ 响应\u 1:-21.47765,-41.10775 //

这两个地址之间的唯一区别是号码(门牌号)。

请求\u 1: {app_id}&app_code={app_code}&countryfocus=BRA&country=BRA&street=AVENIDA VEREADOR EDENITES DA SILVA VIANA&门牌号=244&city=São Francisco de Itabapoana&district=CENTRO&postalcode=2830000&state=RJ 响应\u 1:-21.47765,-41.10775

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

请求\u 2: {app_id}&app_code={app_code}&countryfocus=BRA&country=BRA&street=AVENIDA VEREADOR EDENITES DA SILVA VIANA&门牌号=160&city=São Francisco de Itabapoana&district=CENTRO&postalcode=2830000&state=RJ 响应2:-21.47765,-41.10775


请提供帮助

同一位置位置的响应原因是,您请求中的匹配级别街道,因此,无论您是否更改请求中的门牌号,位置每次都会指向街道地址,直到找到门牌号/姓名

"Result": [
                {
                    "Relevance": 0.9,
                    "MatchLevel": "street",----> street is matched in response
                    "MatchQuality": {
                        "Country": 1.0,
                        "City": 1.0,
                        "Street": [
                            0.9
                        ]
                    },
在比赛质量中,没有任何地方像下面的回答那样写着“HosuneNumber”-

若要解决此问题,请输入与此搜索匹配的有效门牌号。

"Result": [
      {
        "Relevance": 1,
        "MatchLevel": "houseNumber",
        "MatchQuality": {
          "Country": 1,
          "City": 1,
          "Street": [
            0.85
          ],
          "HouseNumber": 1
        },