The cfmapitem tag
is a child tag of the cfmap tag. This tag creates
markers on the map. You can specify the marker in a map using either
the cfmapitem tag or using the ColdFusion.Map.AddMapMarker JavaScript
API. See ColdFusion.Map.addMarker for
details.
Display management tags
<cfmapitem
address="address"
latitude="latitude in degrees"
longitude="longitude in degrees"
markercolor="marker color"
markericon="icon path "
markerwindowcontent="content"
name="name of the map"
showmarkerwinodw=""true|false"
tip="marker tip" />
ColdFusion 9: Added this tag.
Attribute |
Req/Opt |
Default |
Description |
|---|---|---|---|
|
Required, if latitude and longitude are not specified |
The address of the location to set the map marker. |
|
|
Required, if address is not specified |
The latitude value for the marker, in degrees. |
|
|
Required, if address is not specified |
The longitude value for the marker, in degrees. |
|
|
Optional |
green |
Indicates the color of the marker. Specify
a string value, for example By default, the centermarker is green in color. The attributes |
|
Optional |
Location of an image file to use as the
marker icon. The attributes |
|
|
Optional |
Static content displayed in the marker window.
This attribute ignores the |
|
|
Optional |
The name of the map. |
|
showmarkerwindow |
Optional |
Inherits parent cfmap setting |
If set to |
|
Optional |
A short description of the marker location that appears as a tool tip. |
This
tag must be used within the cfmap tag.
The following inheritance rules apply:
The value specified
for the attribute showmarkerwindow in the cfmap tag is
inherited by all cfmapitem tags.
A child cfmapitem tag can override the attribute showmarkerwindow in the cfmap tag
by changing the value.
Any bind expression defined using the markerbind is
ignored if the cfmapitem tag defines the attribute markerwindowcontent.
<h3>cfmapitem example using latitude and longitude attributes</h3>
<cfmap name="gmap01"
centerlatitude="71.094224"
centerlongitude="42.339641"
doubleclickzoom="true"
overview="true"
scrollwheelzoom="true"
showscale="true"
tip="My Map"
zoomlevel="4">
<cfmapitem name="marker01"
latitude="70.50"
longitude="42.50"
tip="New marker"/>
<h3>cfmap Example using address address</h3>
<cfmap name="gmap02"
centerlatitude="71.094224"
centerlongitude="42.339641"
doubleclickzoom="true"
overview="true"
scrollwheelzoom="true"
showscale="true"
tip="My Map"
zoomlevel="4">
<cfmapitem name="marker02"
address="345 Park Avenue, san jose, CA 95110-2704, USA"
tip="New marker"/>