Support

Account

Home Forums General Issues Replace default Google Maps marker for several locations (repeater field) Reply To: Replace default Google Maps marker for several locations (repeater field)

  • Hi @cgoldt

    You can do this with the following code:

    // create marker
    	var marker = new google.maps.Marker({
    		position: latlng,
    		map:      map,
    		title:    'Custom',
    		icon:     'http://www.example.com/application/static/images/gmap-marker.png' 
    	});

    I hope this info helps.