Hi there! I'm working on a map trying to add the cluster marker system Clusterer2.js http://www.acme.com/javascript/#Clusterer
The url for the map is: http://bananacode.org/sic/x/index.php?id=4 Data is retrieved as xml from mysql via, for instance, http://bananacode.org/sic/x/genxml.php?tipo=BIP&IdDep=503 My question: is there a way of using a different CLUSTER ICON for each "tipo"? I'm working on my http://bananacode.org/sic/x/js/Clusterer2.js but I can`t find documentation to help me use my own "customClustericons" var customClustericon = []; customClustericon["BIP"] = ClustericonBip; customClustericon["STE"] = ClustericonSte; var ClustericonBip = new GIcon(); ClustericonBip.image = 'http://bananacode.org/sic/x/images/ iconBip_m.png'; ClustericonBip.shadow = 'http://bananacode.org/sic/x/images/ icon_shadow_multi.png'; ClustericonBip.iconSize = new GSize(15, 21); ClustericonBip.shadowSize = new GSize(22, 21); ClustericonBip.iconAnchor = new GPoint(3, 20); ClustericonBip.infoWindowAnchor = new GPoint(5, 1); var ClustericonSte = new GIcon(); ClustericonSte.image = 'http://bananacode.org/sic/x/images/ iconSte_m.png'; ClustericonSte.shadow = 'http://bananacode.org/sic/x/images/ icon_shadow_multi.png'; ClustericonSte.iconSize = new GSize(15, 21); ClustericonSte.shadowSize = new GSize(22, 21); ClustericonSte.iconAnchor = new GPoint(3, 20); ClustericonSte.infoWindowAnchor = new GPoint(5, 1); Thanks in advance! Hope you can help me! -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
