Support

Account

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

Helping

Replace default Google Maps marker for several locations (repeater field)

  • Hi,

    I’m using the repeater field to render multiple markers on my Google Map. I’m using the code from the Documentation, that works perfectly:

    <?php if( have_rows('locations') ): ?>
    <div class="acf-map">
    <?php while ( have_rows('locations') ) : the_row(); 
    
    $location = get_sub_field('location');
    
    ?>
    <div class="marker" data-lat="<?php echo $location['lat']; ?>" data-lng="<?php echo $location['lng']; ?>">
    <h4><?php the_sub_field('title'); ?></h4>
    <p class="address"><?php echo $location['address']; ?>
    
    <?php the_sub_field('description'); ?>
    
    </div>
    <?php endwhile; ?>
    </div>
    <?php endif; ?>

    How can I implement a third field (image) to define a custom marker for each location to replace the default Google marker? Would be happy to get some help!
    Thanks, Cara

  • 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.

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘Replace default Google Maps marker for several locations (repeater field)’ is closed to new replies.