JavaScript
mapControl.deemphasizeMarker Method
Syntax
mapObj.deemphasizeMarker(markerName);
Arguments
- markerNamestring
The name of the marker to deemphasize.
Description
Deemphasize a marker.
Example
//get a pointer to the map control for variable 'mymap1'
var mapObj = {dialog.object}.getControl('mymap1');
if (mapObj) {
mapObj.deemphasizeMarker('myMarker');
}