Jump to content

[SOLVED] DOM nodes


glenelkins

Recommended Posts

Hi

 

I am using Google API using the function  bindInfoWindowTabsHtml()  which requires tabs to be sent as a DOM Nodes. I have never dealt with DOM Nodes and cannot find anywhere online on how to structure them for this function.

 

Can anyone help?

Link to comment
Share on other sites

wrong forum it should be javascript lol

 

This function adds the info window bubble to a pointer on a Google MAP.

 

I figured out this function needs an array of GInfoWindowTab objects.

 

But now the problem is, it just doesnt show the tabs. It seems to only show the title of the last one in the array ...very annoying

 

// Setup the home marker
var point = new GLatLng ( <?= $latitude; ?>, <?= $longitude; ?> );
var marker = new GMarker ( point, opt );

//marker.bindInfoWindowHtml ( '<h2>You Are Here</h2>' );
var tabs = new Array();
    tabs[0] = new GInfoWindowTab ( 'test', 'test' );
    tabs[1] = new GInfoWindowTab ( 'test2','test2' );

marker.bindInfoWindowTabsHtml (tabs );
map.addOverlay ( marker );

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.