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
https://forums.phpfreaks.com/topic/149943-solved-dom-nodes/
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
https://forums.phpfreaks.com/topic/149943-solved-dom-nodes/#findComment-787517
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.