Hi! this is my code.
I want to find my location and show it with point in map.
import location.time
location.start_updates( )
time.sleep(3)
x = location.get_location( )
location.stop_updates( )
(lat,lon)= (x ["latitude"], x ["longitude"])
img= location.render_map_snapshot(lat,lon, map_type= "terrain", img_width=512, img_height=512)
img.show( )