I’m trying to add a clickable button to a Google Maps InfoWindow. The idea being that after you click on a map marker you see the info window with more details.
There would be a button inside that lets you link to a different screen in the application.
let content = '<button (click)="washerDetail()">Test</button>';
let infoWindow = new google.maps.InfoWindow({
content: content
});
The code above creates the button in the info window but not in the Ionic style. Nothing happens when I click the button though?
Just realized I misread your question. I never did find the answer but what I posted may be a step in the right direction because thats how I got things to trigger on my view.