Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Maps and Google App Engine

I have a Google App Engine application that launches a Web Page with Google Map.
I would now like to add functionality to let user sketch on map (which I can probably use JS API for) and then create a fusion table row using python code backend.
Is this possible?
If so how do I transfer the sketch coords from Javascript to Python backend?

Thanks

like image 921
user846545 Avatar asked Jul 15 '11 13:07

user846545


1 Answers

Here is a simple guideline:

  • Javascript and overlays to draw stuff on the maps
  • Ajax to post json sketch data from the client to Google App Engine
  • A well shaped rest interface on the server using appengine-rest-server
  • Fusion-Tables python library to access Google Fusion Tables from GAE
like image 162
systempuntoout Avatar answered Oct 02 '22 01:10

systempuntoout