Per inserire nel fumetto "miscellaneous" (versione inglese) o "altro" (versione italiana)
Ho fatto queste modifiche alla scheda XSL
Componenti --> Google Maps --> Configure --==> scheda XSL.
1) Per vedere "miscellaneous" o "altro" ho spostato il commento alla seguente riga così:
<!-- Adding HTML into the Info Window
1. Put the HTML you want added into the misc field of the marker
2. add the following line into the info template where you want this HTML to go: -->
<xsl:copy-of select="misc" />
2) Per vedere l'inserimento del campo di ricerca del percorso da altra località verso quella marcata ho spostato il commento alle seguenti righe così:
<!-- Here are some common things you can do in your info window
Adding Driving Directions
1. Add the following code into the info template where you want the driving directions -->
<form action="
http://maps.google.com/maps" method="get" target="_blank">
Your address:
<input type="text" name="saddr" size="20" />
<input type="hidden" name="daddr"><xsl:attribute name="value"><xsl:value-of select="address"/><xsl:text>, </xsl:text><xsl:value-of select="city"/>, <xsl:value-of select="state"/><xsl:text> </xsl:text><xsl:value-of select="zipcode"/></xsl:attribute></input>
<input type="submit" value="Directions"/></form>
Nel mio XSL ho spostato per maggior chiarezza anche l'ordine dei blocchi sopra descritti.
Saluti Vales