Support

Account

Home Forums ACF PRO Google Map Field Radius Reply To: Google Map Field Radius

  • For anyone else looking for how to do this add this to your map function.

       // Add the circle for this marker to the map.
            var cityCircle = new google.maps.Circle({
                strokeColor: "#9BCCDF",
                strokeOpacity: 0.8,
                strokeWeight: 2,
                fillColor: "#9BCCDF",
                fillOpacity: 0.35,
                map: map,
                center: latlng,
                radius: 40233.6,
                draggable: false
            });