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