Hi. I'm developing a Google Map for a client and need some basic help...
This is my client's existing website and you'll see that it contains a small Google Map embedded in an iframe: http://www.bellamallorca.dk/devindex.asp Give the Stort Kort link a click and some JQuery runs and opens a pop- up containing a larger map. This is the code that executes when the Stort Kort link is clicked: <a href="#" class="enlarge_icon" onclick="$$('.hide_items').each (Element.hide);$$('.largemap').each(Element.show);frames ['largeMapIframe'].location.href='http://maps.google.com/maps/ms? ie=UTF8&msa=0&msid=108304117273229554382.0004601474e59e1753111&ll=39.649078,2.915154&spn=0.62372,1.047135&output=embed';" onMouseOver="$$('.largemap_infotext').each(Element.show);" onMouseOut="$$('.largemap_infotext').each(Element.hide);" style="cursor:pointer;">Stort kort</a> Now my map will replace both the small and large map on my client's website. My map is still under development but here is a link to the current version: http://googlemapsapi.martinpearman.co.uk/user_maps/bellamallorca.dk/20090526/ That's the large map, call the same map with a 'smallmap' parameter and you get a small version of the same map: http://googlemapsapi.martinpearman.co.uk/user_maps/bellamallorca.dk/20090526/?smallmap Each location plotted on either map has a unique index value, and calling the large map with an index parameter opens the large map with that location centered on and it's information window opened: http://googlemapsapi.martinpearman.co.uk/user_maps/bellamallorca.dk/20090526/?index=41 So on to my question. How can my small map launch the large map in the pop-up window and specify the index of a location to center on? An even simpler question - how can the Stort Kort link simply open the pop-up containing my large map? I tried taking the source code from my client's existing page and replacing the iframe src attributes with the URLs to my small and large map. The page loads and displays my small map but when i click Stort Kort the page redirects from my domain (where the under-development map is hosted) to my clients website: http://googlemapsapi.martinpearman.co.uk/user_maps/bellamallorca.dk/20090526/devindex.htm I've looked through the source code but really cannot make much sense of the JQuery stuff. Can anyone explain what my client's existing web page is doing and how i might change it to use my new map? Once my map is complete it shall be hosted on my clients website btw and not on my domain. Thanks a lot for any pointers. Martin.