location based application

Hey,

I am developing a location based application and i have already a small social network site with users and friends! I want : - user to check in at a current place (and share location) - see the friends on a map - geotag photos and show them on a map!

How can i do this the best? I have seen services like fire eagle where i can save a current location.. it is possible to make it myself?

Any suggestions?

Thank you

no one?

no one?

We would kind'a prefer nobody _could_ do this. Privacy as we know it is ancient history, but still...

- user to check in at a current place (and share location) - see the friends on a map - geotag photos and show them on a map!

You can only do that at city resolution. (Or so we are told!:wink:

Hey thanks for your answer! I have looked at plazes and this website is just what i am trying to make, but smaller..

I want a logged in user to give in a place where he is currently staying (and show this on map)! How can i do that?

I have looked at the api code and i really liked it! When i want to place myself i have to create a new plaze or use an existing one! I want to do this also! how can i do this?

this is the code from plaze   <plazes>     <plaze>       <id>21</id>       <name>Cheese Galore</name>       <address>Torstrasse 11</address>       <zip_code>10425</zip_code>       <state></state>       <city>Berlin</city>       <country_code>DE</country_code>       <has_free_wifi type="boolean">false</has_free_wifi>       <updated_at type="datetime">2001-01-01T00:00:00Z</updated_at>       <country>Germany</country>       <category>shop</category>       <latitude type="float">52.537995812247</latitude>       <longitude type="float">13.412426179325</longitude>       <link>http://plazes.com</link>       <photo_url>plazes.com 2107b4468b4795c69288fdc9961a3415-thumbnail.jpg</photo_url>     </plaze>

so when a new plaze is created this kind of data is used in the database and on the website. The link with the plaze and user is made in a activity object

<activity> <..> <user></user> <plaze></plaze> </activity>

How can i make this in ruby on rails? Which relation is this?

Marnen Laibow-Koser wrote:

You can only do that at city resolution. (Or so we are told!:wink:

If you don't like the lack of privacy, just don't sign up for this sort of service. But do be aware that the data is very definitely good enough to track you down to the block if you want.

Tx. Good to know.

And could you please cause a distraction while I go ping the crew to cancel tonight's operation? Change of plans...

Hey thanks for your answer! I have looked at plazes and this website is just what i am trying to make, but smaller..

I want a logged in user to give in a place where he is currently staying (and show this on map)! How can i do that?

I have looked at the api code and i really liked it! When i want to place myself i have to create a new plaze or use an existing one! I want to do this also! how can i do this?

this is the code from plaze   <plazes>     <plaze>       <id>21</id>       <name>Cheese Galore</name>       <address>Torstrasse 11</address>       <zip_code>10425</zip_code>       <state></state>       <city>Berlin</city>       <country_code>DE</country_code>       <has_free_wifi type="boolean">false</has_free_wifi>       <updated_at type="datetime">2001-01-01T00:00:00Z</updated_at>       <country>Germany</country>       <category>shop</category>       <latitude type="float">52.537995812247</latitude>       <longitude type="float">13.412426179325</longitude>       <link>http://plazes.com</link>       <photo_url>plazes.com 2107b4468b4795c69288fdc9961a3415-thumbnail.jpg</photo_url>     </plaze>

so when a new plaze is created this kind of data is used in the database and on the website. The link with the plaze and user is made in a activity object

<activity> <..> <user></user> <plaze></plaze> </activity>

How can i make this in ruby on rails? Which relation is this?