I have a Point with a longitude = -0.050122
and latitude = 52.699185
.
When I plot this in Geoviews, this Point is incorrectly displayed:
pin = gv.Points(gdf_pin,vdims=["avg_cust_dist_trav_km","avg_cust_dist_trav_miles"]
).opts(tools=["hover","tap"],
color="green",size = 15,
line_color="white",hover_color="orange",
hover_line_color="white",line_width=2)
Output:
The same thing also seems to happen for Polygon plots produced using Geoviews as well.
Is this a bug or do I have to do something else to correctly display longitudes and latitudes?
Thanks