Feature/prd 1102 Remove routing bridge between MapView and native SDK - #683
Feature/prd 1102 Remove routing bridge between MapView and native SDK#683adrian-situm wants to merge 7 commits into
Conversation
| Logger.info("Navigation interceptor: ${navigationRequest.toMap()}"); | ||
| // navigationRequest.distanceToGoalThreshold = 10.0; | ||
| // ... | ||
| }); |
There was a problem hiding this comment.
La lógica de los interceptores de navegación y rutas fue removida y las funciones deprecadas. Esta linea ya no hacía nada.
| @Deprecated('The routing bridge between the MapView and the native SDK ' | ||
| 'has been removed. This handler is kept for backward compatibility ' | ||
| 'and has no effect.') | ||
| class DirectionsMessageHandler implements MessageHandler { |
There was a problem hiding this comment.
Todos os "message handler" son de uso interno, non público.
Esto deberías poder eliminalo. Creo que o feito de que sexa pública esta clase é un fallo pola nosa parte (non ten sentido o seu uso por parte de integradores), non creo que teñamos que deprecala.
|
|
||
| @Deprecated('The legacy routing bridge no longer uses this method. ' | ||
| 'It is kept for backward compatibility and has no effect.') | ||
| void populateDirectionsRequest( |
There was a problem hiding this comment.
Igual, esto non ten uso desde fóra.
| @Deprecated('The navigation bridge between the MapView and the native SDK ' | ||
| 'has been removed. This handler is kept for backward compatibility ' | ||
| 'and has no effect.') | ||
| class NavigationMessageHandler implements MessageHandler { |
| @Deprecated('The navigation bridge between the MapView and the native SDK ' | ||
| 'has been removed. This handler is kept for backward compatibility ' | ||
| 'and has no effect.') | ||
| class NavigationStopMessageHandler implements MessageHandler { |
| const WV_MESSAGE_AR_REQUESTED = "augmented_reality.requested"; | ||
| const WV_MESSAGE_CARTOGRAPHY_POI_DESELECTED = "cartography.poi_deselected"; | ||
| const WV_MESSAGE_CARTOGRAPHY_POI_SELECTED = "cartography.poi_selected"; | ||
| @Deprecated('The routing bridge between the MapView and the native SDK has ' |
There was a problem hiding this comment.
Máis do mismo, si alguén está usando estas constantes é porque está metendo os morros onde non lle chaman. Podemos borralas, son totalmente internas e non forman parte da API pública (polo menos non conscientemente).
No description provided.