I cannot post a link to my map. At all. Sorry :(. I know this is tough for developers to debug but I think my question is pretty straightforward.
This is how I am acquiring my data: 1. I have a MySQL RDBMS running which has millions of data points. 2. I have a CGI/PERL script which generates a form which users can search through my database. 3. Upon submitting user-inputted query, the perl script will output the results in the form of an XML document. 4. This XML document is this passed into the Javascript portion of my site which loads it using Google's version of XMLHttpRequest, GXml. 5. With the data stored into different arrays, I generate a Google Map which also places markers on the map based on the lat/lon of the results. 6. At this point I have multiple markers, some of the data points have the same latitude and longitude but at varying depths. 7. I would like to allow clickable markers for points which have multiple data values at varying locations. Upon clicking a marker, it would output a scatterplot ( http://code.google.com/apis/visualization/documentation/gallery/scatterchart.html ). Some problems that may or may not need to be addressed: 1. Create new scatter plots on the fly 2. Naming convention for the scatter plot DOMs. Now, I would like to know if it is possible to create more dynamic markers which will allow the calling of openInfoWindowHtml to display scatterplots or any other types of visualizations offered through the Google Visualization API. Has anyone done this and could throw me some pointers. -- Dan On Dec 8, 1:03 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On Dec 8, 8:06 am, p00kie <[EMAIL PROTECTED]> wrote: > > It is not clear what you want. Please read and follow the posting > guidelines:http://groups.google.com/group/Google-Maps-API/web/suggested-posting-... > > #1 > Post a link to your map online. Pasting a handful of lines of your > code is fine to highlight a small section you've got questions about, > but most developers here will not debug your problem or comment on > your question unless you provide a URL to the map online. More on this > important point at the bottom of the page. If you have no server yet, > or if you're worried about uploading unfinished code to your company's > server, upload to Tripod, Geocities, or other free hosts. > > If you have time for a good read, there is a great guide on asking > questions the smart way!http://www.catb.org/%7Eesr/faqs/smart-questions.html > > -- Larry > > > 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.- Hide quoted text - > > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
