Skip to content

Commit

Permalink
Change example longitudes to more reasonable values inside (-180, 180)
Browse files Browse the repository at this point in the history
  • Loading branch information
deeplook committed Jul 31, 2018
1 parent 61b8d54 commit 7b37efd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/api_reference/marker_cluster.rst
Expand Up @@ -8,11 +8,11 @@ Example
from ipyleaflet import Map, Marker, MarkerCluster
m = Map(center=(50, 354), zoom=5)
m = Map(center=(50, 0), zoom=5)
marker1 = Marker(location=(50, 354))
marker2 = Marker(location=(52, 356))
marker3 = Marker(location=(48, 352))
marker1 = Marker(location=(48, -2))
marker2 = Marker(location=(50, 0))
marker3 = Marker(location=(52, 2))
marker_cluster = MarkerCluster(
markers=(marker1, marker2, marker3)
Expand Down

0 comments on commit 7b37efd

Please sign in to comment.