<cfmapitem>

edit

Used with <cfmap>, this tag lets you add markers on the map. This tag is deprecated

This tag may have a body.

This tag has no <cfscript> support or it uses a different syntax.

<cfmapitem name=string address=string latitude=string longitude=string tip=string markerWindowContent=string markerColor=string markerIcon=string ><!--- body --->[</cfmapitem>]
Attribute Description
name
string, optional
edit
address
string, optional
edit
latitude
string, optional
edit
longitude
string, optional
edit
tip
string, optional
edit
markerWindowContent
string, optional
edit
markerColor
string, optional
edit
markerIcon
string, optional
edit

Examples

edit
<cfmap  centerlatitude    = "47.3769"
		centerlongitude    = "8.5417"
		type            = "satellite"
		zoomlevel        = "4"
		width            = "300"
		height            = "300">
	<cfmapitem name="Berlin" latitude="52.5200" longitude="13.405" tip="Berlin"/>
	<cfmapitem name="Zurich" latitude="52.5200" longitude="13.405" tip="Zurich"/>
</cfmap>

See also