Guest User

Untitled

a guest
Jan 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_filter('wpgmp_map_markercluster',change_cluster_marker,10,2);
  2. function change_cluster_marker($cluster_data,$map){
  3.  
  4. // Add map specific condition here
  5.  
  6. if($map->map_id == '1'){
  7.  
  8. //Change Main Cluster Image
  9. $cluster_data['icon'] = 'university.png';
  10.  
  11. //Change Cluster Hover Image
  12. $cluster_data['hover_icon'] = 'university.png';
  13.  
  14. }
  15.  
  16. return $cluster_data;
  17.  
  18. }
Add Comment
Please, Sign In to add comment