I recently made some updates to our app's map feature by replacing our standard generic icons with smaller, more aesthetically pleasing ones. However, I've run into an issue where the new icons are not as tall as the old ones, causing the associated window to appear too high when selected.
I'm struggling to adjust the styling of the window so that it aligns better with the icon.
(see image)
Currently, I am using Angular and exploring options in their documentation at http://angular-ui.github.io/angular-google-maps/#!/api/window
The code snippet I have looks like this:
%ui-gmap-window{ show: '$ctrl.selectedLocation', coords: "$ctrl.selectedLocation", options: '$ctrl.windowOptions', closeClick: '$ctrl.closeClick()' }
This code effectively selects the location and displays the window, but I need help with styling adjustments. Is there a way to customize the appearance?