python - How to add placemarks to track in Google Earth? -
i'm trying add placemarks on track in google earth.
imagine i'm riding bike through neighborhood , take note of open houses see.
i've gotten track shows path through neighborhood. open houses pop on map placemarks icon drives past path.
what's best way that?
i've recorded data csv file , trying write conversion in python.
thanks!
you can use static maps api, can
head="https://maps.googleapis.com/maps/api/staticmap?center=brooklyn+bridge,new+york,ny&zoom=13&size=600x300&maptype=roadmap" marker1="&markers=color:blue%7clabel:s%7c40.702147,-74.015794" marker2="&markers=color:green%7clabel:g%7c40.711614,-74.012318" marker3="&markers=color:red%7clabel:c%7c40.718217,-73.998284" print head + marker1 + marker2 or.. can translate css json , make javascript api display result.
Comments
Post a Comment