mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-08-01 04:10:32 +02:00
Support for coordinates
This commit is contained in:
@@ -117,7 +117,8 @@ def plot(
|
||||
zorder_streets = None,
|
||||
zorder_building = None,
|
||||
# Whether to fetch data using OSM Id
|
||||
by_osmid = False
|
||||
by_osmid = False,
|
||||
by_coordinates = False,
|
||||
):
|
||||
|
||||
#############
|
||||
@@ -125,7 +126,9 @@ def plot(
|
||||
#############
|
||||
|
||||
# Geocode central point
|
||||
if not by_osmid:
|
||||
if by_coordinates:
|
||||
point = (float(query.split(",")[0].strip()), float(query.split(",")[1].strip()))
|
||||
elif not by_osmid:
|
||||
point = ox.geocode(query)
|
||||
|
||||
# Fetch perimeter
|
||||
|
Reference in New Issue
Block a user