Re: [E-devel] [Patch][elm_map] Fix zoom rotated coordinates bug

2012-01-17 Thread The Rasterman
On Wed, 11 Jan 2012 12:27:12 +0900 Bluezery ohpo...@gmail.com said: in svn! :) thanks! :) Thanks~! I changed the name elm_map_convert_canvas_into_geo() -- elm_map_canvas_to_geo_convert() And I deprecate elm_map_utils_rotate_coord() function. Instead recommend

Re: [E-devel] [Patch][elm_map] Fix zoom rotated coordinates bug

2012-01-10 Thread The Rasterman
On Mon, 9 Jan 2012 17:28:21 +0900 Bluezery ohpo...@gmail.com said: sorry - been busy for the past week or so and havent had time to deal with my backlog. i'm onto it now. comment: elm_map_convert_canvas_into_geo() - should rename to be more efl strict oo like: elm_map_canvas_to_geo_convert()

Re: [E-devel] [Patch][elm_map] Fix zoom rotated coordinates bug

2012-01-10 Thread Bluezery
Thanks~! I changed the name elm_map_convert_canvas_into_geo() -- elm_map_canvas_to_geo_convert() And I deprecate elm_map_utils_rotate_coord() function. Instead recommend elm_map_canvas_to_geo_convert() to use in doc. Acutally, rotation is not needed to know. Please review again :D 2012/1/11

Re: [E-devel] [Patch][elm_map] Fix zoom rotated coordinates bug

2012-01-09 Thread Bluezery
After consideration, I think that elm_map_utils_size_get() and elm_map_utils_region_get() is not needed for users. because only functions related to geographic coordinates are only concern of users. And converting func. from canvas to geo is needed for finding exact geo-coordinates in canvas area.

[E-devel] [Patch][elm_map] Fix zoom rotated coordinates bug

2012-01-02 Thread Bluezery
Hi, In my point of view, elm_map did not consider zooming rotation by using Evas_Map initially. There are no problems if you use only elm_map_zoom_set(). But if you use pinch gesture or wheel to do subtle zooming rotating, the calculations of coordinates are not correct currently. I have fixed