Yes,
- add image custom to folder:
modules\mod_jaimagehotspot\assets\images
with name: icon-marker-your_custom_name.png
-
Go to:
modules\mod_jaimagehotspot\assets\elements\jaimgextrafields\imgextrafields.xml
Find for:
<field
name="ptype"
type="list"
label="JAI_POINT_TYPE"
description="JAI_POINT_TYPE_DESC">
<option value="default">Default</option>
<option value="cloud">Cloud</option>
<option value="star">Star</option>
<option value="study">Study</option>
<option value="truck">Truck</option>
<option value="bird">Bird</option>
.....
Add more option like:
<option value="your_custom_name">your_custom_name</option>
-
Go to:
modules/mod_jaimagehotspot/assets/elements/jaimgextrafields/imgextrafields.css
Add these lines:
#jform_params_imgpath_preview_img .ja-marker-your_custom_name {
background: rgba(0, 0, 0, 0) url("../../../assets/images/icon-marker-your_custom_name.png") repeat scroll 0 0;
}
-
Go to:
modules/mod_jaimagehotspot/assets/css/style.css
add these lines:
.jai-map-container .ja-marker-your_custom_name {
background: rgba(0, 0, 0, 0) url("../images/colors/red/icon-marker-your_custom_name.png") repeat scroll 0 0;
}