Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

CFmapItem "markerwindowcontent" how to add URL?

New Here ,
Jul 21, 2010 Jul 21, 2010

I'am using dynamic data from DB, but notice that unable to add hyperlink for my URL...

<cfoutput query = "GetMapsData">

        <cfmapitem

          address="#Latitude_ID#, #Longitude_ID#"

          markericon="markers/#category#.png"

          markerwindowcontent="#Map_Title# <br/> #Description# <br/> #URL# <br/><br/>">


</cfoutput>

I try this..

<cfoutput query = "GetMapsData">
        <cfmapitem
          address="#Latitude_ID#, #Longitude_ID#"
          markericon="markers/#category#.png"
          markerwindowcontent="#Map_Title# <br/> #Description# <br/> <a href="#URL#">#URL#</a> <br/><br/>">
</cfoutput>

Is error..

Anybody can help?

663
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 23, 2010 Jul 23, 2010
LATEST

finally i found the script..

<a href="#URL#">#URL#</a> <a href='#URL#'>#URL#</a>

Only change the " to '

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources