hi,

I found google map repository on maemo talk.
http://talk.maemo.org/showthread.php?t=5209
so I've tested google map using elm_map like below.
it works fine. very good performance...

> static char *
> _google_street_url_cb(void *data, int x, int y, int zoom)
> {
>    char buf[PATH_MAX];
>    snprintf(buf, sizeof(buf), "
http://mt1.google.com/vt/hl=en&x=%d&y=%d&z=%d";,
>             x, y, zoom);
>    return strdup(buf);
> }
>
> static char *
> _google_satellite_url_cb(void *data, int x, int y, int zoom)
> {
>    char buf[PATH_MAX];
>    snprintf(buf, sizeof(buf), "
http://khm2.google.com/kh/v=46&x=%d&y=%d&z=%d";,
>             x, y, zoom);
>    return strdup(buf);
> }

can I check-in this code to elm_map.c?
is there any problem?
------------------------------------------------------------------------------
Nokia and AT&T present the 2010 Calling All Innovators-North America contest
Create new apps & games for the Nokia N8 for consumers in  U.S. and Canada
$10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing
Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store 
http://p.sf.net/sfu/nokia-dev2dev
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to