I already tested zoom, boundary, pan, etc.
everything is okay, but I didn't know there is license issue.

so I have some questions about your comments.

1. is it same with static maps api?
  "http://mt1.google.com/vt/hl=en&x=%d&y=%d&z=%d"; is different url with "
http://maps.google.com/maps/api/staticmap?xxxx";
  but I have no idea what kind of google open api :(

2. if same, there is legal issue. but I think that elm_map should support
app developer can make their own map app when they have license.
  is there any mechanism for license in elm_map?

3. as I know, maemo mapper uses same google url. what do you think about
this?

anyway there is issue about supporting license problem.
when some corp commercialize product using elm_map, this will definitely be
a problem.

2010/11/2 Atton Jonathan <jonathan.at...@gmail.com>

> I can't test right now but :
> - Have you tested with zoom in - zoom out  ?
> - Have you tested the boundaries of the map ?
>
>
> Sse :
> You embed a Static Maps API image within a webpage inside an <img> tag's
> src attribute. When the webpage is displayed, the browser requests the
> image from the the Static Maps API and it renders within the image location.
> Note that static maps may only be displayed within browser content; use of
> static maps outside of the browser is not allowed. (Google Maps API
> Premier <http://code.google.com/apis/maps/documentation/premier/> users
> are waived of this requirement.)
> source :
> http://code.google.com/intl/fr/apis/maps/documentation/staticmaps/#Limits
>
> Do not commit your code.
>
> 2010/11/2 [박상호] <gouach...@gmail.com>
>
>> 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
>>
>
>
>
> --
> Regards.
>
------------------------------------------------------------------------------
Achieve Improved Network Security with IP and DNS Reputation.
Defend against bad network traffic, including botnets, malware, 
phishing sites, and compromised hosts - saving your company time, 
money, and embarrassment.   Learn More! 
http://p.sf.net/sfu/hpdev2dev-nov
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to