Robby
Robby
Hi @AkramFaiz According to the [Directions Requests](https://developers.google.com/maps/documentation/javascript/directions#DirectionsRequests), alternative routes won't show at the same time. You can use `onResponse` event to get results, or check out the issue #81 ```html...
Hi @umsuka , I have build an ionic app for sample, hope to help you. [https://github.com/explooosion/ionic-agm-direction-example](https://github.com/explooosion/ionic-agm-direction-example)
Try this: ```js ngOnInit() { // initial this.getDirection(); } getDirection() { this.origin = { lat: 25.7782341, lng: -80.1867595 }; this.destination = { lat: 25.7616798, lng: -80.1917902 }; } ```
Now only `ClickEvent` can open the `InfoWindow`. This is a good feature.
Hi @chris248-git According to the [Directions Requests](https://developers.google.com/maps/documentation/javascript/directions#DirectionsRequests), alternative routes won't show at the same time. If you want to get the result of alternative routes, you can set `[provideRouteAlternatives]="true"` and...
Actually, I use ngIf too. I think this is a good question. Pull requests are always welcome.
Hi @Hokino ! There is no way to custom waypoints style now with any waypoint params in [GoogleMapAPI - directions#Waypoints](https://developers.google.com/maps/documentation/javascript/directions#Waypoints). 😞 But I have found this [post](https://stackoverflow.com/questions/35989237/how-to-draw-a-google-maps-waypoint-with-multi-colored-polylines), you can create...
Hi ! @monikagupta78 I'm not sure I understand what you mean. You want to display a directions [panel](https://developers.google.com/maps/documentation/javascript/examples/directions-panel?hl=en)?🤔 ### Panel Here is an example of panel: ```html ``` Check out...
Sorry, I can't understand clearly. Could you provide some use case or images about this issue?
Hi @DanielEFGS ! See the documentation for the [DirectionsRendererOptions](https://developers.google.com/maps/documentation/javascript/reference/directions#DirectionsRendererOptions.preserveViewport) - preserveViewport For example: ```html ``` ```ts public renderOptions = { preserveViewport: true, }; ```