Skip to main content
Tweeted twitter.com/StackGIS/status/816326715823820800
improved formatting
Source Link
whyzar
  • 12.1k
  • 23
  • 41
  • 72

I would like to plot a point in a Folium map. Not a circle, just a point (i.e. without a radius). And 

I would like for them not to zoom in if I do, but just stay as a point.

I have

 fmap.circle_marker(location=[row["lat"],row["lon"]], popup=row["tower"]) 

I've tried setting the radius to 0, and the fill_color/fill_opacity to 0 as well, but it still displays a circle.

I would like to plot a point in a Folium map. Not a circle, just a point (i.e. without a radius). And I would like for them not to zoom in if I do, but just stay as a point.

I have

 fmap.circle_marker(location=[row["lat"],row["lon"]], popup=row["tower"]) 

I've tried setting the radius to 0, and the fill_color/fill_opacity to 0 as well, but it still displays a circle.

I would like to plot a point in a Folium map. Not a circle, just a point (i.e. without a radius). 

I would like for them not to zoom in if I do, but just stay as a point.

I have

 fmap.circle_marker(location=[row["lat"],row["lon"]], popup=row["tower"]) 

I've tried setting the radius to 0, and the fill_color/fill_opacity to 0 as well, but it still displays a circle.

Source Link
Dervin Thunk
  • 545
  • 1
  • 4
  • 11

Folium/Leaflet display marker without radius?

I would like to plot a point in a Folium map. Not a circle, just a point (i.e. without a radius). And I would like for them not to zoom in if I do, but just stay as a point.

I have

 fmap.circle_marker(location=[row["lat"],row["lon"]], popup=row["tower"]) 

I've tried setting the radius to 0, and the fill_color/fill_opacity to 0 as well, but it still displays a circle.