I would like to create my own google maps mash up exactly like wundermaps but with different data.
How can i go about doing this?
http://itunes.apple.com/us/app/wundermap/id364884105?mt=8
What do I needto use to get a search listing
using the google maps API? I can get one address
or lat/long but I want to search for say "bars 84070"
andget a list of addresses and lat/long
thanks
Given a model likeso:
from google.appengine.ext import db
class X(db.Model):
p = db.StringProperty(verbose_name="Like p, but more modern.")
How does one access verbose_name from x=X() (an instance of X)?
One might expect that x.p.verbose_name would work, or alternatively x.properties()['p'].verbose_name, but neither seems to work.
Thanks!
EDIT: x.name.verbose_name = x.p.verbose_name
Is it possible to use Lua with Google App Engine? I recognize that there will be a lot of Java glue, but I would like to use Lua for most of the logic.
hi,
I created table in google Big table datastore ,In that the i set primary key using
@annotations as follows
@Id
@Column(name = "groupname")
private String groupname;
@Basic
private String groupdesc;
I worked corretly,but it override the previous record,how to solve this
for eg
if i entered
groupname=group1
groupdesc=groupdesc
than it accept
after that i enter same groupname it override previous record
for eg
groupname=group1
groupdesc=groups
this record override previous one.
I have an ASP.NET page in which there is a textbox. The user enters a string in the textbox and I want that string to be searched in Google and redirect the search results to my web page. I'm using VB as the background programming language.
How can I do that? And also which toolbox control should I use in my page, for displaying the search results?
I've been investigating what I can do with Google's Secure Data Connector and App Engine.
Is it possible, from an App Engine application, to grab resources inside my corporate intranet without using HTTP(S)?
From what I read in the documentation, the only way to request resources through SDC is by using url_fetch, which is limited to HTTP, right?
Has anyone succeeded in getting an instance of jaikuengine running locally on Windows using the Google App Engine SDK and the latest jaikuengine SVN code?
Hi Team,
I would like to compare conversion funnels from multiple sites. Is there a straight forward way of doing this in google analytics?
Thanks,
Jackson
I'm getting some problems trying Google Geocoding service when using special characters like "º" or letters with accents.
Whenever I try something like:
"barcelona, nº 10"
I get 0 results. But trying:
"barcelona n 10"
I get results...
I suspect is something related with encoding.
I tried this:
geocoder.geocode({'address': encodeURI( $('#direction').val() )}, function(){} );
But didn't help.
Any Idea?
this paramter it's wried, i look all request/response when google reader start, still can't find any clue!
some guy says use feed's firstitemmsec / 1000, but it's not the correct way.
help!!!
How to use the update query in google app engine while using with gwt. I'm trying to make a chat application where apart from submitting and deleting the previous messages, the administrator can edit out the portions of existing messages.
For editing the existing messages update query is needed and I could not find anything like update query in data store.
How can we update the existing data?
Hello,
I had recently (and unfortunately) uninstalled the google chrome browser from my computer -while completely forgetting about the dozens of bookmarks I had stored on it.
Is there a method/directory to retrieve these chrome bookmarks after having already uninstalled???
Please do help! would be a lifesaver!
Hello
I just bought new domain for my web page.
Is it good to use php redirection to the new domain and what are the exact headers that I must send to google bot to just renew the address and keep the page rank without loosing position in search results for the specific keyword ?
Regards
Hi , I would like parse data from google maps geocode version 3 through json. I would like to get details like locaityName, AdministrativeAreaName and status code. May I know how to parse these data? Thank you
On my html page, I have a google map with a few markers.
I want all the markers to be cleared once the zoom is changed on the map with the following code.
GEvent.addListener(map, "zoomend", function()
{
map.clearOverlays();
}
But what happens is actually the markers are removed by the "clearOverlays()" function, but then they appear again.
Any idea why? Where is it going after the event is handled?
Hi,
Has anyone got any suggestions on where to start with building a google map into a rails app? I would like users to be able to add a marker by clicking the map, and have spent a few days looking for a suitable tutorial or plugin (beyond ym4r), to little avail...any help would be much appreciated!
Hi,
By looking at current Google wave APIs, I can't find a way to create an alternative client.
It's not a robot or gadget, and the embed API is very slim.
Nevertheless, I do see some clients out there - such as Waver and Waveboard.
How do they do it ? is it based on XMPP ?
Is there an API available for grabbing Google Streetview images at a particular location (and direction)? I see that its possible to get and position the Flash control, but I'd prefer something that just gave me a JPEG (or some other bitmap format).
hi everybody,
I need to do a countdown clock, that counts down the days, hours, minutes and seconds that are left to a date of my choice,Using jquery or google app engine(Python).
I created a timer using Javascript,But in that i used system time.
I need to use server time.Can any body give me ideas to build up a count down Timer using server UTC time.