450                 var point = new GLatLng(lat, lon);
451                 var html = '<div style = "width:500px;">' + '<font
class="verdana" size="2px"><b>Date and Time:<br></b>' + dt +
452                         '<br><b>Cruise Info:<br></b>' + ci +
'<br><b>Name: </b>' + name + '<br><b>Value: </b>' + val + '<br><b>Data
Points: </b>' + countM +
453                         '</font></div><div id = "scat_plot_div"
style="width:400px;"></div>';
454
455                 //var html = "<img src = 'http://oceandev1/seabass/
folder.gif' />";
456                 //var html = "<div id = 'scat_plot_div'></div>";
457                 // Create the marker
458                 var marker = createMarker(point, html);
459                 map.addOverlay(marker);


468         function createMarker(point, html) {
469             var marker = new GMarker(point);
470
471             GEvent.addListener(marker, "click", function() {
472                 loadDepthPlot();
473                 marker.openInfoWindowHtml(html);
474             });
475
476             return marker;
477         }


On Dec 8, 10:06 am, p00kie <[EMAIL PROTECTED]> wrote:
> Bump
>
> On Dec 5, 2:17 pm, p00kie <[EMAIL PROTECTED]> wrote:
>
> > I think a great example of what I would like iswww.wikimapia.com
>
> > They have multiple markers that overlay over each other with the
> > addition of dynamic and informative data at each marker.
>
> > I would like to borrow this idea and bring in google visualizations
> > (such as scatter plots) into the marker.openInfoWindowHtml.
>
> > On Dec 1, 3:00 pm, p00kie <[EMAIL PROTECTED]> wrote:
>
> > > Is it possible to have markers that upon clicking, will show marker
> > > info in the form of a table or scatterplot (google viz api)? If so,
> > > can anyone give an example.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to