I am creating a map using the Google Maps API and the InfoBox extension: http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobox/docs/reference.html
I can add a general addition to Infobox, for example:
var infoOptions = {
disableAutoPan: true,
closeBoxURL: "",
pixelOffset: new google.maps.Size(20, 0),
boxStyle: { background: "#ffffff", padding:"4px" }
};
but when I try to change this as just the remaining filling, it does not display the map:
var infoOptions = {
disableAutoPan: true,
closeBoxURL: "",
pixelOffset: new google.maps.Size(20, 0),
boxStyle: { background: "#ffffff", padding-left:"4px" }
};
The only change I make between the two is to add "-left" to the end of the fill stylist. Any help would be greatly appreciated. Thank.
source
share