kitey
02-26-2003, 09:40 PM
My code is a java code that first finds the number of points to be mapped... finds each of their address and then takes an address like XYZ street, sometown, somestate, somezip and finds its lat/long to plot on a map.
then it for loops to construct a Url string like :
http://someurl.com/somefile.cgi?Point1=lat1,long1&Point2=lat2,long2&...
and my JSP contains:
<img src = "http://someurl.com/somefile.cgi?Point1=lat1,long1&Point2=lat2,long2" >
and the cgi script generates a map with the locations marked.
How do I make each of these points marked on the map a hotspot ?
Thanks !!
then it for loops to construct a Url string like :
http://someurl.com/somefile.cgi?Point1=lat1,long1&Point2=lat2,long2&...
and my JSP contains:
<img src = "http://someurl.com/somefile.cgi?Point1=lat1,long1&Point2=lat2,long2" >
and the cgi script generates a map with the locations marked.
How do I make each of these points marked on the map a hotspot ?
Thanks !!