Re: Google Maps with Routes

2013-11-10 Thread Nick Apostolakis

Στις 10/11/2013 01:19 μμ, ο/η Vibhu Rishi έγραψε:

Hi Nick,

I am not sure if openstreet will solve my purpose. What I have in mind is
that when someone is planning a trip , he can enter the route details in
the trip info. This should give the approximate distance etc. ( btw bike =
motorcycle here in India). Also apart from google maps I have not really
come across any mapping service which has a good coverage of roads and
cities in India.

vibhu


Vibhu

I understand, what you are looking for seems like an application of 
geodjango and a classic gis application.
Still using openstreet map will give you access to a lot of information 
even if the data are not complete, alternatively you could use tha 
google maps api but I am not sure if it is free, and even if it is free 
today you have no guarantee that it will be tomorrow.


Speaking about my area, which is a small village in the southern Crete, 
Greece, I see that most main roads are mapped in openstreet map.
I have already improved the existing data by adding a few small villages 
that where missing, and today
I have added some agricultural roads in the near vicinity. May be your 
case is similar.


Anyway here is a tutorial with geodjango and google maps, that may come 
close to what you are after


http://invisibleroads.com/tutorials/geodjango-googlemaps-build.html

and some map related django packages

https://www.djangopackages.com/grids/g/maps/

nothing special with the links, you can find a lot more, just by 
googling geodjango and maps.


Keep in mind the risk of google changing the license and pricing of 
their api (e.g the translation api used to be free of charge, now it has 
a price)


Cheers

--
 --
 Nick Apostolakis
 Msc in IT, University of Glasgow
 e-mail: nicka...@oncrete.gr
 Web Site: http://nick.oncrete.gr
 --

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/527F8550.7000508%40oncrete.gr.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Google Maps with Routes

2013-11-10 Thread Vibhu Rishi
Hi Nick,

I am not sure if openstreet will solve my purpose. What I have in mind is
that when someone is planning a trip , he can enter the route details in
the trip info. This should give the approximate distance etc. ( btw bike =
motorcycle here in India). Also apart from google maps I have not really
come across any mapping service which has a good coverage of roads and
cities in India.

vibhu


On Sun, Nov 10, 2013 at 11:51 AM, Nick Apostolakis wrote:

> Hello there,
>
> why don't you use openstreetmap service instead of google maps.
> I am not an expert but it seems that there are a few references relating
> django and openstreet map
> a couple from a google search are:
>
> http://wiki.openstreetmap.org/wiki/Editors/Django
> https://github.com/etnalubma/django-osm
>
> http://www.slideshare.net/mishok13/making-use-of-openstreetmap-data-with-python
>
>
> personally, I have used osmand to capture gpx track data and then upload
> them to openstreet map and create a bike route
> or http://www.gpsvisualizer.com/ if you want just to plot your track
>
>
> On Sun, Nov 10, 2013 at 6:22 AM, Vibhu Rishi wrote:
>
>> Hi Guys,
>>
>> As a hobby project I am working on a website for my motorycle touring
>> group  ( A very early alpha is on http://www.bikenomads.co.in )
>>
>> I am working on the trip module and one of the things I want to work on
>> is a graphical trip route. I checked a few google map modules for django
>> and they seem more of just showing the map for a location.
>>
>> Can you provide me some pointers for any apps which will allow me to have
>> point and click route added ? or any ideas as to how to implement it.
>>
>> Regards,
>> Vibhu
>>
>> --
>> Simplicity is the ultimate sophistication. - Leonardo da Vinci
>> Life is really simple, but we insist on making it complicated. -
>> Confucius
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at http://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAPiONwnuV6vDGtkuK%2BfNyNePd0rOdO0gsxGQ-URoQ_iu8%2BcioQ%40mail.gmail.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>
>
> --
>  --
>  Nick Apostolakis
>  Msc in IT, University of Glasgow
>  e-mail: nicka...@oncrete.gr
>  Web Site: http://nick.oncrete.gr
>  --
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BTu-wxrfhJ-H%2BzdXY976bjm%2BNL-YTA-t_%2BStjkTQAtc0DVztQ%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPiONwkuj3w98wZda1ndQPx3YKoU6V_vXisqGMdN69q3c3%3D6Ow%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Google Maps with Routes

2013-11-09 Thread Nick Apostolakis
Hello there,

why don't you use openstreetmap service instead of google maps.
I am not an expert but it seems that there are a few references relating
django and openstreet map
a couple from a google search are:

http://wiki.openstreetmap.org/wiki/Editors/Django
https://github.com/etnalubma/django-osm
http://www.slideshare.net/mishok13/making-use-of-openstreetmap-data-with-python


personally, I have used osmand to capture gpx track data and then upload
them to openstreet map and create a bike route
or http://www.gpsvisualizer.com/ if you want just to plot your track


On Sun, Nov 10, 2013 at 6:22 AM, Vibhu Rishi  wrote:

> Hi Guys,
>
> As a hobby project I am working on a website for my motorycle touring
> group  ( A very early alpha is on http://www.bikenomads.co.in )
>
> I am working on the trip module and one of the things I want to work on is
> a graphical trip route. I checked a few google map modules for django and
> they seem more of just showing the map for a location.
>
> Can you provide me some pointers for any apps which will allow me to have
> point and click route added ? or any ideas as to how to implement it.
>
> Regards,
> Vibhu
>
> --
> Simplicity is the ultimate sophistication. - Leonardo da Vinci
> Life is really simple, but we insist on making it complicated. - Confucius
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAPiONwnuV6vDGtkuK%2BfNyNePd0rOdO0gsxGQ-URoQ_iu8%2BcioQ%40mail.gmail.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
 --
 Nick Apostolakis
 Msc in IT, University of Glasgow
 e-mail: nicka...@oncrete.gr
 Web Site: http://nick.oncrete.gr
 --

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BTu-wxrfhJ-H%2BzdXY976bjm%2BNL-YTA-t_%2BStjkTQAtc0DVztQ%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Google maps

2011-01-29 Thread Sam Walters
Hi

This also depends how server-side oriented you want this to be?

Its good to learn geodjango. (that way if your calculation areas of
polygons, loading layers you can just make this python+server side
instead of writing it in javascript.
Also with lots of ajax related request/response designs some people
look at using dajax or something like that to reduce development time.

cheers

sam_w



On Sat, Jan 29, 2011 at 12:17 AM, Michael  wrote:
> You might take a look at
> https://launchpad.net/ubuntu-django-foundations/map
>
> It's a fairly new project, but is actively being developed.
>
> --
> Michael 
>
> On Thu, 2011-01-27 at 21:23 -0800, roy mukasa wrote:
>> Hey guys does anyone know how i can embed google maps into django? i
>> am new to django but i am trying to develop an app in which i will
>> embed a google map of a particular area.
>>
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps

2011-01-28 Thread Michael
You might take a look at
https://launchpad.net/ubuntu-django-foundations/map

It's a fairly new project, but is actively being developed.

-- 
Michael 

On Thu, 2011-01-27 at 21:23 -0800, roy mukasa wrote:
> Hey guys does anyone know how i can embed google maps into django? i
> am new to django but i am trying to develop an app in which i will
> embed a google map of a particular area.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps

2011-01-28 Thread Shawn Milochik
Just do a Google search for the Google Maps API. It's the same regardless of 
whether you're using Django or something else to generate the HTML pages. You 
mainly have to write JavaScript.

Also, search github and bitbucket to see if someone's created and shared some 
code for Django to easily generate the templates and JavaScript for you so you 
don't have to write much other than some lovely Python.

Shawn

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps like app for Django for small area?

2010-06-03 Thread Stodge
Thanks. I already know about geodjango but that's not the whole
solution from my understanding. Though searching again for geodjango I
eventually found MapServer, TileCache and OpenLayers. I *think* this
might be what I'm looking for.

On Jun 2, 9:54 pm, Sam Walters  wrote:
> http://geodjango.org/
>
>
>
> On Thu, Jun 3, 2010 at 11:35 AM, Stodge  wrote:
> > Is there a Django app (or SDK/API/technology/etc) that can recreate
> > Google maps for a small area (say 60 square miles) with all maps
> > stored locally on the server? Thanks
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Django users" group.
> > To post to this group, send email to django-us...@googlegroups.com.
> > To unsubscribe from this group, send email to 
> > django-users+unsubscr...@googlegroups.com.
> > For more options, visit this group 
> > athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps like app for Django for small area?

2010-06-02 Thread Sam Walters
http://geodjango.org/



On Thu, Jun 3, 2010 at 11:35 AM, Stodge  wrote:
> Is there a Django app (or SDK/API/technology/etc) that can recreate
> Google maps for a small area (say 60 square miles) with all maps
> stored locally on the server? Thanks
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-27 Thread Peter Landry
Ubuntu has fairly up-to-date Postgis packages available, I believe. That
might be an easier route to start from if you're unfamiliar with building
from source.

On 1/27/10 12:04 PM, "Alexis Selves"  wrote:

> Hello again,
> I have another problem...
> When I want to install PostGIS using this
> http://geodjango.org/docs/install.html#postgis
> I receive this:
>  make -C liblwgeom
> make[1]: Entering directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
> gcc -g -O2  -fno-common -DPIC  -Wall -Wmissing-prototypes  -c -o
> measures.o measures.c
> In file included from measures.c:16:
> liblwgeom.h:18:31: error: ../postgis_config.h: No such file or
> directory
> make[1]: *** [measures.o] Error 1
> make[1]: Leaving directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
> make: *** [liblwgeom] Error 2
> I am hopeless or I don't know.. Everything I do is following the hints
> on official pages..
> I use ubuntu 9.10.. by the way..
> 
> 
> On 26 led, 18:56, Alessandro Pasotti  wrote:
>> 2010/1/26 Alexis Selves 
>> 
>> 
>> 
>>> Thanks for hints.
>> 
>>> But here is another problem, how can I store my data do geodb with
>>> javascript?
>>> I was searching several hours, but nothing...
>> 
>>> On 25 led, 15:40, Alessandro Pasotti  wrote:
 2010/1/25 Alexis Selves 
>> 
> Hi there,
> I am new here by the way.
> I have only simple question, how can I extract route from google map
> and save it into geodb as multipoint or etc..
> Thanks for answers.
>> 
 According to the GMap api docs, you can request driving directions from
>>> the
 client with or without geometric data for the routing polyline:
>> 
 http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
>> 
 Once you have pulled the polyline from Gmap server, you can send them
>>> back
 to your server and store them in your geodb.
>> 
 You probably will want to decode the polyline from google's encoding
>>> format
 before storinghttp://
>>> facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
>> 
 Hope this helps
 --
 Alessandro Pasotti
 w3:  www.itopen.it
>> 
>> You need some kind of Ajax XHR call from the client and a server-side piece
>> of software that gets the data coming from the client and put them into the
>> DB.
>> 
>> --
>> Alessandro Pasotti
>> w3:  www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-27 Thread Alexis Selves
Hello again,
I have another problem...
When I want to install PostGIS using this 
http://geodjango.org/docs/install.html#postgis
I receive this:
 make -C liblwgeom
make[1]: Entering directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
gcc -g -O2  -fno-common -DPIC  -Wall -Wmissing-prototypes  -c -o
measures.o measures.c
In file included from measures.c:16:
liblwgeom.h:18:31: error: ../postgis_config.h: No such file or
directory
make[1]: *** [measures.o] Error 1
make[1]: Leaving directory `/home/petr/Skola/postgis-1.4.0/liblwgeom'
make: *** [liblwgeom] Error 2
I am hopeless or I don't know.. Everything I do is following the hints
on official pages..
I use ubuntu 9.10.. by the way..


On 26 led, 18:56, Alessandro Pasotti  wrote:
> 2010/1/26 Alexis Selves 
>
>
>
> > Thanks for hints.
>
> > But here is another problem, how can I store my data do geodb with
> > javascript?
> > I was searching several hours, but nothing...
>
> > On 25 led, 15:40, Alessandro Pasotti  wrote:
> > > 2010/1/25 Alexis Selves 
>
> > > > Hi there,
> > > > I am new here by the way.
> > > > I have only simple question, how can I extract route from google map
> > > > and save it into geodb as multipoint or etc..
> > > > Thanks for answers.
>
> > > According to the GMap api docs, you can request driving directions from
> > the
> > > client with or without geometric data for the routing polyline:
>
> > >http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
>
> > > Once you have pulled the polyline from Gmap server, you can send them
> > back
> > > to your server and store them in your geodb.
>
> > > You probably will want to decode the polyline from google's encoding
> > format
> > > before storinghttp://
> > facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
>
> > > Hope this helps
> > > --
> > > Alessandro Pasotti
> > > w3:  www.itopen.it
>
> You need some kind of Ajax XHR call from the client and a server-side piece
> of software that gets the data coming from the client and put them into the
> DB.
>
> --
> Alessandro Pasotti
> w3:  www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-26 Thread Alessandro Pasotti
2010/1/26 Alexis Selves 

> Thanks for hints.
>
> But here is another problem, how can I store my data do geodb with
> javascript?
> I was searching several hours, but nothing...
>
> On 25 led, 15:40, Alessandro Pasotti  wrote:
> > 2010/1/25 Alexis Selves 
> >
> > > Hi there,
> > > I am new here by the way.
> > > I have only simple question, how can I extract route from google map
> > > and save it into geodb as multipoint or etc..
> > > Thanks for answers.
> >
> > According to the GMap api docs, you can request driving directions from
> the
> > client with or without geometric data for the routing polyline:
> >
> > http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
> >
> > Once you have pulled the polyline from Gmap server, you can send them
> back
> > to your server and store them in your geodb.
> >
> > You probably will want to decode the polyline from google's encoding
> format
> > before storinghttp://
> facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
> >
> > Hope this helps
> > --
> > Alessandro Pasotti
> > w3:  www.itopen.it
>
>
>
You need some kind of Ajax XHR call from the client and a server-side piece
of software that gets the data coming from the client and put them into the
DB.


-- 
Alessandro Pasotti
w3:   www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-26 Thread Alexis Selves
Thanks for hints.

But here is another problem, how can I store my data do geodb with
javascript?
I was searching several hours, but nothing...

On 25 led, 15:40, Alessandro Pasotti  wrote:
> 2010/1/25 Alexis Selves 
>
> > Hi there,
> > I am new here by the way.
> > I have only simple question, how can I extract route from google map
> > and save it into geodb as multipoint or etc..
> > Thanks for answers.
>
> According to the GMap api docs, you can request driving directions from the
> client with or without geometric data for the routing polyline:
>
> http://code.google.com/intl/it-IT/apis/maps/documentation/services.ht...
>
> Once you have pulled the polyline from Gmap server, you can send them back
> to your server and store them in your geodb.
>
> You probably will want to decode the polyline from google's encoding format
> before storinghttp://facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/
>
> Hope this helps
> --
> Alessandro Pasotti
> w3:  www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-25 Thread Alessandro Pasotti
2010/1/25 Alexis Selves 

> Hi there,
> I am new here by the way.
> I have only simple question, how can I extract route from google map
> and save it into geodb as multipoint or etc..
> Thanks for answers.
>
>

According to the GMap api docs, you can request driving directions from the
client with or without geometric data for the routing polyline:

http://code.google.com/intl/it-IT/apis/maps/documentation/services.html#Directions

Once you have pulled the polyline from Gmap server, you can send them back
to your server and store them in your geodb.

You probably will want to decode the polyline from google's encoding format
before storing
http://facstaff.unca.edu/mcmcclur/GoogleMaps/EncodePolyline/


Hope this helps
-- 
Alessandro Pasotti
w3:   www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-25 Thread Jorge Bastida
Probably you can download the route as KML. Parse that XML, and use
the data in your app

Hope this help you

Best Regards

2010/1/25, Alexis Selves :
> Hi there,
> I am new here by the way.
> I have only simple question, how can I extract route from google map
> and save it into geodb as multipoint or etc..
> Thanks for answers.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>


-- 
Benito Jorge Bastida
jo...@thecodefarm.com

thecodefarm SL
Av. Gasteiz 21, 1º Derecha
01008 Vitoria-Gasteiz
http://thecodefarm.com
Tel: (+34) 945 06 55 09

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google maps routes in geodjango

2010-01-25 Thread Shawn Milochik
When you use the Google Maps API and request a driving route, what comes back 
in the data?

Shawn

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Google Maps API

2008-05-22 Thread Gremmie

On Mar 30, 8:08 pm, [EMAIL PROTECTED] wrote:
> I have a field I'm using that shows where events are around our area
> for sports collectors, what I'd like to do is implement Google Maps,
> kind of like the Washington Post does here:
>
> http://projects.washingtonpost.com/2008-presidential-candidates/track...
>
> Where/what would I need to search for?

You'll want to go here:
http://code.google.com/apis/maps/

I integrated a google map with a PHP application. Most of the heavy
lifting is done on the client side with Javascript.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Google Maps API

2008-05-22 Thread jeffself



On Mar 30, 9:18 pm, Michael <[EMAIL PROTECTED]> wrote:
> I would search for "googlemapsAPI." Really though the integration
> with googlemapsis mostly a front end application. So you would
> create it all with front end javascript.
>
> The only real django knowledge to pass here would be to make store the
> longitude and latitude values that google gives you with the address
> to submit. This generally involves an extra 2 fields in the database,
> but saves on valuable calls to Google. I used geopy to get to the
> google api from python. It has worked without an issues on my server.
>
> Hope that helps,
>
> Michael

Michael,

I assume you want to use geopy to grab the latitude and longitude from
Google when you submit the form, correct?  Then how do you pass the
latitude and longitude to the Google Maps API?  Are you using JSON?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Google Maps API

2008-03-30 Thread Michael

I would search for "google maps API." Really though the integration
with google maps is mostly a front end application. So you would
create it all with front end javascript.

The only real django knowledge to pass here would be to make store the
longitude and latitude values that google gives you with the address
to submit. This generally involves an extra 2 fields in the database,
but saves on valuable calls to Google. I used geopy to get to the
google api from python. It has worked without an issues on my server.

Hope that helps,

Michael

On Sun, Mar 30, 2008 at 9:08 PM,  <[EMAIL PROTECTED]> wrote:
>
>  I have a field I'm using that shows where events are around our area
>  for sports collectors, what I'd like to do is implement Google Maps,
>  kind of like the Washington Post does here:
>
>  
> http://projects.washingtonpost.com/2008-presidential-candidates/tracker/dates/2008/apr/09/6741/
>
>  Where/what would I need to search for?
>  >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Google Maps API

2008-03-30 Thread Ramiro Morales

On Sun, Mar 30, 2008 at 10:08 PM,  <[EMAIL PROTECTED]> wrote:
>
>  I have a field I'm using that shows where events are around our area
>  for sports collectors, what I'd like to do is implement Google Maps,
>  kind of like the Washington Post does here:
>
>  
> http://projects.washingtonpost.com/2008-presidential-candidates/tracker/dates/2008/apr/09/6741/
>
>  Where/what would I need to search for?

I'd start by going to the Google web site and searching with the
following three words: django google maps

Good luck,

-- 
 Ramiro Morales

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---