infoWindow pixelOffset customization
-
Hi Ian,
Thank you for developing this powerful and easy-to-use plugin!
I searched to see if anyone else had inquired about the possibility of adding support for pixelOffset for the location of the infoWindow but I couldn’t find anything.
I have a special use case where the map marker is an irregular shape and need to reposition the infoWindow slightly up and to the right.
I was able to make the necessary change in functions.js just after line 40:
Before
// Initialize single info window to reuse for each placemark
$.bgmp.infoWindow = new google.maps.InfoWindow( {
content : '',
maxWidth : bgmpData.options.infoWindowMaxWidth
} );
After
// Initialize single info window to reuse for each placemark
$.bgmp.infoWindow = new google.maps.InfoWindow( {
content : '',
maxWidth : bgmpData.options.infoWindowMaxWidth,
pixelOffset: new google.maps.Size(22, 15)
} );
I read your post about The Right Way to Customize a WordPress Plugin, but I am not sure how to approach making this particular customization.
Any pointers in advance of your possibly adding support for pixelOffset is appreciated.
Thanks again!
The topic ‘infoWindow pixelOffset customization’ is closed to new replies.