I'm writing a maps application using GWT.  On the server side I load
some geographical data that can be used to construct PNG images for
tile overlays.  I subclassed com.google.gwt.maps.client.TileLayer and
need to write the getTileURL method.  It currently returns a fixed URL
that points to a PNG file on the web so all the tile overlays look the
same.  I'd like it to return a URL that hits my server so that it can
construct the PNG from the data it loaded and serve that back to the
client.  That's where I'm lost.  The URL I use to run the application
in a browser is:

http://127.0.0.1:8888/GLOBE.html?gwt.codesvr=127.0.0.1:9997

So I'm assuming something like this will work:

http://127.0.0.1:8888/.......?x=1&y=2&z=15

That is, it's easy enough to specify the tile and zoom level in the
URL, but I don't know where on the server side the request will be
processed.  Can/does that happen in the greeting service?  How?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to