kxqabaxl / google-maps-utility-library-v3

Automatically exported from code.google.com/p/google-maps-utility-library-v3
Apache License 2.0
0 stars 0 forks source link

Need an option to make the info window go bigger #239

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Demo link or sample code:

Lines 1706 through 1712:

// Maybe add this as a option so they can go bigger than the map if             
//the user wants
    if (width > mapWidth) {
        width = mapWidth;
    }

    if (height > mapHeight) {
        height = mapHeight - tabHeight;
    }

What steps will reproduce the problem?
1. Add an option that can be given on initialization to make the infowindow go 
bigger. 

Expected result:
if we tell the infoWindow not to be bound by the map, we want the window to 
take up the required space of the content. 

Actual result:
The info window is restricted to the size of the map. 

Version: 0.8

Browser / Operating System:
All modern browsers

Additional comments:
Please?

*********************************************************
Tip: Star this issue (next to title) to receive notifications of status
changes against this issue, also used as a gauge for how many people are
interested in seeing it resolved.
*********************************************************

Original issue reported on code.google.com by adam.j.b...@gmail.com on 21 Mar 2013 at 9:59