I also don't know what to search for. I typed "test" and it moved me to some result in New Mexico (several states west of where I am right now). I'd strongly recommend including some example searches that will consistently bring up good results.
It put's my location in rural Algeria (I'm in Nottingham, UK). It does this even if I check the 'share my location with geosay.com' type warning that Firefox provides.
With Chrome & Opera it again puts my location in rural Algeria, however clicking on 'Share location' narrows it down to a map of the whole of the UK (better, but still not too useful).
Saying that, I don't think it's a problem with your site, as clicking on the 'show my location' button (above the streetview guy) in Google maps can't find me either and I'm guessing you're using the same google maps API to do your lookups.
I am in the nascent phases of developing a location based app, but have gotten stuck in trying to figure out a good way to store the data. Currently cassandra is the top contender.
class GeosayController < ApplicationController
def api
expires_in 1.minutes, :public => true
results = Tweet.near(params[:lat].to_f,params[:lon].to_f)
render :json => results
end
end....
class Tweet
include MongoMapper::Document
def self.near(lat, lon)
self.all( :latlong => {'$near' => [lat, lon]}, :limit => 30)
end
end1) When I drag the map, it didn't follow me with chatter 2) You should link your logo (what's with the "done" button?) 3) On google maps, when you click on a marker, it highlights the sidebar, maybe you should do that? 4) Might as well add a get directions button? 5) How about the little yellow guy?
Cool stuff.
1) Agreed - we should make it do that (there are reasons that it is a little tricky - but not insurmountable)
2) Agreed
3) Agreed
4) The mobile version has that. As desktop locations seem a lot less accurate, I wonder what the true utility of that in the desktop versi0n would be.
5) "Little yellow guy" - erm - what little yellow guy (am I missing something?)
We do think there is room for a location based service for sharing information that isn't about check-ins, and gaming mechanisms. That's what we're trying to do anyway...
Populate the map when you get my location, otherwise I think the app is broken.
A search for Bloomington, IN (verbatim) got me a tweet for Bloomington, IL. You don't want the same problem for cities like Brown or Jackson.
Maybe get rid of the left sidebar altogether? It's just redundant.