Skip to content

Instantly share code, notes, and snippets.

@domenicomonaco
Created September 19, 2016 16:28
Show Gist options
  • Save domenicomonaco/88b76b617ebb2436950fd055a286da56 to your computer and use it in GitHub Desktop.
Save domenicomonaco/88b76b617ebb2436950fd055a286da56 to your computer and use it in GitHub Desktop.
Circle_Draw_GOOGLE_map_pixe_VS_radius
var cityCircle = new google.maps.Circle({
strokeColor: '#FF0000',
strokeOpacity: 0.5,
strokeWeight: 2,
fillColor: '#FF0000',
fillOpacity: 0.35,
map: map,
center: latLng,
radius: 30
});
new google.maps.Marker({
position: latLng,
icon: {
path: google.maps.SymbolPath.CIRCLE,
scale: 20,
strokeWeight: 1,
},
map: map
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment