WALKING MapMatching issue
Ninguém assumiu esta issue ainda.
- Linguagem predominante
- Java
- Estrelas
- 438
- Forks
- 117
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
We are working on a app that uses the mapmatching api. We seem to have some problems when it comes to walking matchings/steps. Many of the roads dont seem to be included when matching with this profile. Is there any way that I can add these roads to the walking profile so it matches the points correctly like in the example Directions demo?
This behaviour only seems to be an issue when using the WALKING profile.
Some additional info:
Point point1 = Point.fromLngLat(6.525440, 52.115350);
Point point2 = Point.fromLngLat(6.526132, 52.115345);
waypoints.add(point1);
waypoints.add(point2);
Locale locale = new Locale("nl_NL");
Arrays.fill(radiuses, 50.0);
MapboxMapMatching client = MapboxMapMatching.builder()
.accessToken(Objects.requireNonNull(Mapbox.getAccessToken()))
.geometries(DirectionsCriteria.GEOMETRY_POLYLINE)
.profile(DirectionsCriteria.PROFILE_WALKING)
.overview(DirectionsCriteria.OVERVIEW_FULL)
.coordinates(waypoints)
.language(locale)
.steps(true)
.roundaboutExits(true)
.bannerInstructions(true)
.tidy(false)
.radiuses(radiuses)
.build();
Result:

Expected result:

Guia de contribuição
Primeiros passos
- Leia a issue inteira e depois o guia de contribuição do projeto.
- Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
- Faça um fork do repositório e trabalhe em uma branch.
- Abra um pull request que referencie o número da issue.
Direção de pesquisa
Comece reproduzindo a requisição Java mostrada na issue, usando MapboxMapMatching.builder com PROFILE_WALKING, as coordenadas fornecidas e as opções indicadas. Compare o matching e as etapas dela com a demonstração do Directions e, em seguida, rastreie se a discrepância é exposta pela Java API ou ocorre no serviço subjacente. A tarefa estará concluída quando houver uma causa confirmada e uma resolução documentada e acionável.
Escrita pelo modelo de indexação a partir do texto da issue.
Avaliação
- Stack de tecnologia
- java
- Domínio
- api
- Tipo de issue
- Bug
- Dificuldade
- 4/5
- Tempo estimado
- 3-5 dias
- Status de atividade
- Estagnada
- Clareza
- Precisa de esclarecimento
- Facilidade para iniciantes
- 25/100