My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Aug 27, 2009
    issue 16 (event of MapWebViewDelegate do not trig.) reported by christophe.guilmart   -   in the MapWebView.m all the if (self.Delegate) [self.Delegate mapCenterUpdatedToLatLng:latlng]; should be if (self.mDelegate) [self.mDelegate mapCenterUpdatedToLatLng:latlng];
    in the MapWebView.m all the if (self.Delegate) [self.Delegate mapCenterUpdatedToLatLng:latlng]; should be if (self.mDelegate) [self.mDelegate mapCenterUpdatedToLatLng:latlng];
  • Aug 05, 2009
    issue 15 (Google map API version 3) reported by duyphamsg   -   Hi all Is it work with google map api version 3?
    Hi all Is it work with google map api version 3?
  • Aug 05, 2009
    issue 11 (Where do you chnge the start position?!) commented on by ideveloper.in   -   Is there any way we can change the center from the app itself? I want the user's current location to be the center. I have also stored the HTML as a local file. thanks.
    Is there any way we can change the center from the app itself? I want the user's current location to be the center. I have also stored the HTML as a local file. thanks.
  • Jun 03, 2009
    r16 (Adding autoresizing mask to MapView) committed by dr.mshalaby   -   Adding autoresizing mask to MapView
    Adding autoresizing mask to MapView
  • Jun 03, 2009
    r15 (Handling auto-resizing in MapViewViewController) committed by dr.mshalaby   -   Handling auto-resizing in MapViewViewController
    Handling auto-resizing in MapViewViewController
  • May 18, 2009
    issue 14 ([PATCH] add a doubleClickMarker event) commented on by smith288   -   You need to use a subversion client or command line to patch the code. Read about applying patch files.
    You need to use a subversion client or command line to patch the code. Read about applying patch files.
  • Apr 27, 2009
    issue 14 ([PATCH] add a doubleClickMarker event) commented on by rahul.bhargava25   -   hello sir, I am unable to open your .patch file .how it works please tell me.
    hello sir, I am unable to open your .patch file .how it works please tell me.
  • Apr 25, 2009
    issue 14 ([PATCH] add a doubleClickMarker event) reported by npellow   -   Attached is a very simple patch that allows the doubleClick event to be captured on a marker. Cheers, Nick
    Attached is a very simple patch that allows the doubleClick event to be captured on a marker. Cheers, Nick
  • Apr 20, 2009
    issue 10 (Euclidean Formula v. Great Circle Formula) commented on by jtay...@netmodular.com   -   I'd love to see that higher accuracy formula, are you going to post it to the code? the method at least?
    I'd love to see that higher accuracy formula, are you going to post it to the code? the method at least?
  • Apr 09, 2009
    issue 13 (Markers do not move when the map is dragged or zoomed) commented on by dr.mshalaby   -   The code provided in revision 14 was perfectly functional and tested on Mac OS X 10.5.5, Xcode 3.1.2 & Simulator 2.2 We still do not support iPhone 3.0 yet.
    The code provided in revision 14 was perfectly functional and tested on Mac OS X 10.5.5, Xcode 3.1.2 & Simulator 2.2 We still do not support iPhone 3.0 yet.
  • Apr 09, 2009
    issue 13 (Markers do not move when the map is dragged or zoomed) reported by alexpreynolds   -   What steps will reproduce the problem? 1. Add movable or fixed marker 2. Drag or zoom map via one- or two-finger touch What is the expected output? What do you see instead? Marker positions should translate when the map is moved. Off-center markers should move towards the center of the map when zooming out. Likewise, off-center markers should move outwards from the center when zooming in. What version of the product are you using? On what operating system? Using rev 14 on Mac OS X 10.5.6. Tested with Xcode 3.1.3, Simulator 3.0 and iPhone OS 3.0 (7A259g). Please provide any additional information below.
    What steps will reproduce the problem? 1. Add movable or fixed marker 2. Drag or zoom map via one- or two-finger touch What is the expected output? What do you see instead? Marker positions should translate when the map is moved. Off-center markers should move towards the center of the map when zooming out. Likewise, off-center markers should move outwards from the center when zooming in. What version of the product are you using? On what operating system? Using rev 14 on Mac OS X 10.5.6. Tested with Xcode 3.1.3, Simulator 3.0 and iPhone OS 3.0 (7A259g). Please provide any additional information below.
  • Apr 08, 2009
    r14 (releasing mapViewController) committed by dr.mshalaby   -   releasing mapViewController
    releasing mapViewController
  • Apr 08, 2009
    r13 (Adding map marker support - clickable - draggable) committed by dr.mshalaby   -   Adding map marker support - clickable - draggable
    Adding map marker support - clickable - draggable
  • Mar 25, 2009
    issue 8 (Partial display if map view is out of screen on loading) commented on by quentin.arnault   -   Defect can be rejected, the problem does not come frome iphone-google-maps-component but from UIScrollView behaviour. A scrollview does not handle refresh of component while scrolling.
    Defect can be rejected, the problem does not come frome iphone-google-maps-component but from UIScrollView behaviour. A scrollview does not handle refresh of component while scrolling.
  • Mar 17, 2009
    issue 11 (Where do you chnge the start position?!) commented on by alberto.pasca   -   you can change initial lat/lon in the web page called by code. Go to http://wenear.com/iphone and click show HTML. There is a metod called map.setCenter(lat, lon, zoom); bye
    you can change initial lat/lon in the web page called by code. Go to http://wenear.com/iphone and click show HTML. There is a metod called map.setCenter(lat, lon, zoom); bye
  • Mar 11, 2009
    issue 12 (Issue: double free) reported by vdutto   -   Reading the code, I find a potential issue in the class MapView. In the initWithFrame method the mMapWebView is created using an autorelease pool: mMapWebView = [[[MapWebView alloc] initWithFrame:self.bounds] autorelease]; but in the dealloc method mMapWebView is released: [mMapWebView release]; I think that this is wrong. HTH
    Reading the code, I find a potential issue in the class MapView. In the initWithFrame method the mMapWebView is created using an autorelease pool: mMapWebView = [[[MapWebView alloc] initWithFrame:self.bounds] autorelease]; but in the dealloc method mMapWebView is released: [mMapWebView release]; I think that this is wrong. HTH
  • Mar 08, 2009
    issue 11 (Where do you chnge the start position?!) reported by JacKlinkPRODUCTIONS   -   How do you set the start position. Such as a Lat/Long. I searched through the code for 15 minutes and didn't find it! What did i miss?
    How do you set the start position. Such as a Lat/Long. I searched through the code for 15 minutes and didn't find it! What did i miss?
  • Mar 02, 2009
    issue 9 (Map not loading) commented on by krisz...@mac.com   -   That is odd. I guess the one thing I would check is internet, but if you downloaded the app, than one would assume that you are also connected to the internet when running the app.
    That is odd. I guess the one thing I would check is internet, but if you downloaded the app, than one would assume that you are also connected to the internet when running the app.
  • Mar 02, 2009
    issue 7 (Lat and Long info) commented on by krisz...@mac.com   -   I can't even find where to change the start lat/lon.
    I can't even find where to change the start lat/lon.
  • Mar 02, 2009
    issue 10 (Euclidean Formula v. Great Circle Formula) reported by krisz...@mac.com   -   Lines 190-194 in MapView.m is used to determine distances between two places. I am not quite sure what the real world application of this is. In the app that I have (webapp with PhoneGap/location awareness), I use the great circle equation, because that has a real world application. I attempted to use the Euclidean Formula, but it is never right. I messed around with the great circle formula, and it is dead on to within a few yards between any two points. It should be pretty easy to implement this, so I will try to mess around with it and get it working, although I don't know how exactly to get the distance between two points within the app.
    Lines 190-194 in MapView.m is used to determine distances between two places. I am not quite sure what the real world application of this is. In the app that I have (webapp with PhoneGap/location awareness), I use the great circle equation, because that has a real world application. I attempted to use the Euclidean Formula, but it is never right. I messed around with the great circle formula, and it is dead on to within a few yards between any two points. It should be pretty easy to implement this, so I will try to mess around with it and get it working, although I don't know how exactly to get the distance between two points within the app.
  • Feb 27, 2009
    issue 9 (Map not loading) reported by ranchc   -   What steps will reproduce the problem? 1. Map is not loading at all from your sample app What is the expected output? What do you see instead? i want to see the map What version of the product are you using? On what operating system? MapView-r12.zip Source Archive (svn r12) Please provide any additional information below. I downloaded the sample app "MapView-r12.zip Source Archive (svn r12)" and try to run nothing seems to be working. I get only White Blank Screen!
    What steps will reproduce the problem? 1. Map is not loading at all from your sample app What is the expected output? What do you see instead? i want to see the map What version of the product are you using? On what operating system? MapView-r12.zip Source Archive (svn r12) Please provide any additional information below. I downloaded the sample app "MapView-r12.zip Source Archive (svn r12)" and try to run nothing seems to be working. I get only White Blank Screen!
  • Feb 26, 2009
    issue 4 (very slow on a device..) commented on by jnkatriya   -   I am using this, but its too much slow after adding few Marker, so can you please let me know what best solution to fix the issue? I have spent lots of hours to research on google, but not any luck. I have also tried with Route-Me, but its not support goole map, anybody know, how to add google source in Route-Me sample? thanks Jayanti
    I am using this, but its too much slow after adding few Marker, so can you please let me know what best solution to fix the issue? I have spent lots of hours to research on google, but not any luck. I have also tried with Route-Me, but its not support goole map, anybody know, how to add google source in Route-Me sample? thanks Jayanti
  • Feb 25, 2009
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by david.casseres   -   My apologies, it does work. I got the source code a different way (using Safari Web Inspector) and that didn't work, but when I used View Source it worked.
    My apologies, it does work. I got the source code a different way (using Safari Web Inspector) and that didn't work, but when I used View Source it worked.
  • Feb 25, 2009
    issue 8 (Partial display if map view is out of screen on loading) reported by quentin.arnault   -   What steps will reproduce the problem? 1. Launch an application higher than screen with the map view half on screen and half out of screen. 2. Wait map tiles loading. 3. Scroll down. 4. Only the visible part of map view has map tiles, other part is still grey. What is the expected output? What do you see instead? The map is loaded completely. What version of the product are you using? On what operating system? r12
    What steps will reproduce the problem? 1. Launch an application higher than screen with the map view half on screen and half out of screen. 2. Wait map tiles loading. 3. Scroll down. 4. Only the visible part of map view has map tiles, other part is still grey. What is the expected output? What do you see instead? The map is loaded completely. What version of the product are you using? On what operating system? r12
  • Feb 24, 2009
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by david.casseres   -   Time has passed, and maybe something has changed. I followed robnapier's instructions carefully, but it doesn't work; a reasonable URL is generated, but the map is blank.
    Time has passed, and maybe something has changed. I followed robnapier's instructions carefully, but it doesn't work; a reasonable URL is generated, but the map is blank.
  • Feb 20, 2009
    issue 7 (Lat and Long info) reported by sa...@sethscards.com   -   I'm trying to get the lat and long info, for the screen's center, into a form that I can enter in to a SQLite DB
    I'm trying to get the lat and long info, for the screen's center, into a form that I can enter in to a SQLite DB
  • Jan 26, 2009
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by adeibiza   -   ps that last post shouldve been from this gmail account ;)
    ps that last post shouldve been from this gmail account ;)
  • Jan 26, 2009
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by kateibiza   -   ive been using the maps api for about 2 years - youve always been able to use localhost without a key - the caveat being that to use "online" you have to have a key and the map be publicly accesible (ie not restricted by payment or restrictivly password protected) or if used in an intranet you need a premium licence (10k usd) whether you work "offline" in an app or in a testing envirnoment you still need online access to get the tiles loaded and the main google maps js files my guess is that issue hasnt reached tipping point within the maps api team
    ive been using the maps api for about 2 years - youve always been able to use localhost without a key - the caveat being that to use "online" you have to have a key and the map be publicly accesible (ie not restricted by payment or restrictivly password protected) or if used in an intranet you need a premium licence (10k usd) whether you work "offline" in an app or in a testing envirnoment you still need online access to get the tiles loaded and the main google maps js files my guess is that issue hasnt reached tipping point within the maps api team
  • Jan 20, 2009
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by eholzwarth   -   To all that are using robnapier's solution -- I don't think it abides by the Google Maps API license agreement. The license allows you to use the API on a specific website. The API key is associated with the domain name. robnapier's solution uses the API via a localhost webpage, so queries from an iPhone app that use this solution will not come from the domain associated with the key. While Google seems to tolerate these violations at low volume, I worry that it is not something one should rely on. I'd love to be wrong about this. Anyone read the license differently?
    To all that are using robnapier's solution -- I don't think it abides by the Google Maps API license agreement. The license allows you to use the API on a specific website. The API key is associated with the domain name. robnapier's solution uses the API via a localhost webpage, so queries from an iPhone app that use this solution will not come from the domain associated with the key. While Google seems to tolerate these violations at low volume, I worry that it is not something one should rely on. I'd love to be wrong about this. Anyone read the license differently?

Older

  • Dec 30, 2008
    issue 3 (tiles stop loading properly after a while) commented on by nate.bauernfeind   -   Does anyone know if it is possible to remedy this problem by destroying and recreating the View after some time has passed? Maybe by keeping an eye on the amount of memory it is using?
    Does anyone know if it is possible to remedy this problem by destroying and recreating the View after some time has passed? Maybe by keeping an eye on the amount of memory it is using?
  • Dec 08, 2008
    issue 3 (tiles stop loading properly after a while) commented on by rajivtec   -   Hi...i have also integrated this component in my application. The loading of tiles is too slow and the app crashes bcoz of consuming excess memory..... i can adjust with the slow loading...but i need to figure out some way to clear excess memory that my UIWebView is consuming. can anyone guide me in right direction ???
    Hi...i have also integrated this component in my application. The loading of tiles is too slow and the app crashes bcoz of consuming excess memory..... i can adjust with the slow loading...but i need to figure out some way to clear excess memory that my UIWebView is consuming. can anyone guide me in right direction ???
  • Dec 05, 2008
    issue 4 (very slow on a device..) commented on by sandeepasrani   -   Guys i am new to iPhone development and i need to use the google api's can u tell me the changes we can do to fix the zooming feature and also make the loading smoother.
    Guys i am new to iPhone development and i need to use the google api's can u tell me the changes we can do to fix the zooming feature and also make the loading smoother.
  • Nov 18, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by demonzz   -   Thanx for everything It work perfectly
    Thanx for everything It work perfectly
  • Oct 29, 2008
    issue 3 (tiles stop loading properly after a while) commented on by brian.bkenny   -   Is their anyway to increase the memory allocation in UIWebView to exceed 10MB?
    Is their anyway to increase the memory allocation in UIWebView to exceed 10MB?
  • Oct 29, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by brian.bkenny   -   I've used these changes and they worked perfectly. @demonzz - goto http://www.wenear.com/iphone-test and hit 'View Source'. Stick the contents of the source code into a new HTML file called GoogleMapAPI.html as robnapier said above. Then replace the loadMap function with the code robnapier posted above in the MapWebView.m file.
    I've used these changes and they worked perfectly. @demonzz - goto http://www.wenear.com/iphone-test and hit 'View Source'. Stick the contents of the source code into a new HTML file called GoogleMapAPI.html as robnapier said above. Then replace the loadMap function with the code robnapier posted above in the MapWebView.m file.
  • Oct 20, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by demonzz   -   Hi to all Can you tell my what exactly i should do to solve the problem with the wenear ! Comment 2 by robnapier, Sep 20, 2008 Place the current contents of iphone-test in a file called GoogleMapAPI.html in the project. I'm totally new in the iphone or any Mac development so i will appreciate any help. Thanking you in advance
    Hi to all Can you tell my what exactly i should do to solve the problem with the wenear ! Comment 2 by robnapier, Sep 20, 2008 Place the current contents of iphone-test in a file called GoogleMapAPI.html in the project. I'm totally new in the iphone or any Mac development so i will appreciate any help. Thanking you in advance
  • Oct 18, 2008
    issue 4 (very slow on a device..) commented on by osoell   -   WARNING! This particular "bug" makes this project all but unusable. Panning/zooming the map when on the phone itself is painfully slow. Painfully! Now looking into Touchmap (http://toxicsoftware.com/touchmap/) or Route Me (http://code.google.com/p/route-me/).. Thanks for the motivation to get started with some development though :)
    WARNING! This particular "bug" makes this project all but unusable. Panning/zooming the map when on the phone itself is painfully slow. Painfully! Now looking into Touchmap (http://toxicsoftware.com/touchmap/) or Route Me (http://code.google.com/p/route-me/).. Thanks for the motivation to get started with some development though :)
  • Oct 01, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by mlhackett   -   That solution would, however, violate the Google TOS. See the discussion at http://groups.google.com/group/Google-Maps-API/browse_thread/thread/2f42bc5e4c3368d8/fbdc4ecdc3b96096?#fbdc4ecdc3b96096
  • Sep 29, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by rlogozar   -   I've been trying to implement your component and I have not been able to get it working using the iPhone simulator. When I launch the application, all I get is a black screen. However, I've noticed that the following message is printed in the console: 9/29/08 9:05:22 AM /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app/Contents/MacOS/iPhone Simulator[365] load_application_info: Could not load signer identity from /Users/user1/Library/Application Support/iPhone Simulator/User/Applications/D5394B88-A5E3-4178-8CDD-9CEF063CEF4B/MapView.app/MapView Any ideas? I am pretty new to the iPhone development. Any help would be greatly appreciated. Thanks.
    I've been trying to implement your component and I have not been able to get it working using the iPhone simulator. When I launch the application, all I get is a black screen. However, I've noticed that the following message is printed in the console: 9/29/08 9:05:22 AM /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app/Contents/MacOS/iPhone Simulator[365] load_application_info: Could not load signer identity from /Users/user1/Library/Application Support/iPhone Simulator/User/Applications/D5394B88-A5E3-4178-8CDD-9CEF063CEF4B/MapView.app/MapView Any ideas? I am pretty new to the iPhone development. Any help would be greatly appreciated. Thanks.
  • Sep 23, 2008
    issue 4 (very slow on a device..) commented on by ddalledo   -   There is a free app called "KLICK" on AppStore that's doing a great job with Google Maps ... any Idea how do they do that? I know you can call directly "tiles server" with Google but I am not sure it's allowed by the TOS :-(
    There is a free app called "KLICK" on AppStore that's doing a great job with Google Maps ... any Idea how do they do that? I know you can call directly "tiles server" with Google but I am not sure it's allowed by the TOS :-(
  • Sep 21, 2008
    issue 3 (tiles stop loading properly after a while) commented on by rustyshelf   -   So I'm gathering that no one has found a way to fix this yet?
    So I'm gathering that no one has found a way to fix this yet?
  • Sep 21, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by rustyshelf   -   @robnapier your solution works well! Thanks for posting it.
    @robnapier your solution works well! Thanks for posting it.
  • Sep 20, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by robnapier   -   To follow up on this issue, apparently the component is using wenear.com simply to host its javascript. That's unnecessary. The component can easily carry its own javascript with it and remove all non-google dependencies. Place the current contents of iphone-test in a file called GoogleMapAPI.html in the project. Then change MapWebView -loadMap as follows. If you would like this as a patchfile, or would like me to commit the changes directly, I'd be happy to do so. - (void) loadMap { int width = (int) self.frame.size.width; int height = (int) self.frame.size.height; NSString *path = [[[NSBundle mainBundle] pathForResource:@"GoogleMapAPI" ofType:@"html"] stringByAppendingFormat:@"?width=%d&height=%d&zoom=%d", width, height, DEFAULT_ZOOM_LEVEL]; // Although the docs say that host can be nil, it can't. Opened radar:6234824 NSURL *url = [[[NSURL alloc] initWithScheme:NSURLFileScheme host:@"localhost" path:path] autorelease]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [self loadRequest:request]; }
    To follow up on this issue, apparently the component is using wenear.com simply to host its javascript. That's unnecessary. The component can easily carry its own javascript with it and remove all non-google dependencies. Place the current contents of iphone-test in a file called GoogleMapAPI.html in the project. Then change MapWebView -loadMap as follows. If you would like this as a patchfile, or would like me to commit the changes directly, I'd be happy to do so. - (void) loadMap { int width = (int) self.frame.size.width; int height = (int) self.frame.size.height; NSString *path = [[[NSBundle mainBundle] pathForResource:@"GoogleMapAPI" ofType:@"html"] stringByAppendingFormat:@"?width=%d&height=%d&zoom=%d", width, height, DEFAULT_ZOOM_LEVEL]; // Although the docs say that host can be nil, it can't. Opened radar:6234824 NSURL *url = [[[NSURL alloc] initWithScheme:NSURLFileScheme host:@"localhost" path:path] autorelease]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [self loadRequest:request]; }
  • Sep 14, 2008
    issue 4 (very slow on a device..) commented on by timodav   -   You won't be able to fix this problem .... it's to do with the way that Google API loads the tiles of the maps. Google Maps doesn't allow you to directly access their map server - so it means that you cannot reduce the size of the map tile images when the map is loading on the iphone. If you look at the loopt application - they use Live maps, but they directly access the Microsoft tile server, which means that they can specify the size of the image tiles which are loading. Microsoft allow you to do this - but don't support any documentation and state that they can change the way their tile service works at any time - effectively breaking your app. If anyone finds a solution and/or more info than I have already provided - please post it.
    You won't be able to fix this problem .... it's to do with the way that Google API loads the tiles of the maps. Google Maps doesn't allow you to directly access their map server - so it means that you cannot reduce the size of the map tile images when the map is loading on the iphone. If you look at the loopt application - they use Live maps, but they directly access the Microsoft tile server, which means that they can specify the size of the image tiles which are loading. Microsoft allow you to do this - but don't support any documentation and state that they can change the way their tile service works at any time - effectively breaking your app. If anyone finds a solution and/or more info than I have already provided - please post it.
  • Sep 13, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) commented on by vavdiyaharesh   -   Yes above comment is absolutely right.. In this project it is not displaying any specific location and not giving any information that how can we display specific location....
    Yes above comment is absolutely right.. In this project it is not displaying any specific location and not giving any information that how can we display specific location....
  • Sep 10, 2008
    issue 5 (if the component is base on the web site http://www.wenear.c...) reported by icocode   -   What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I want make sure if the component is base on the web site http://www.wenear.com ? if yes , I think the component is not good solution ....
    What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below. I want make sure if the component is base on the web site http://www.wenear.com ? if yes , I think the component is not good solution ....
  • Aug 30, 2008
    issue 4 (very slow on a device..) commented on by ralf.hue...@sophistes.net   -   Hi, i have the same problems on the iphone running. If i move the card it gets very slow - we have to do realize another solution but thank you for the good sugar
    Hi, i have the same problems on the iphone running. If i move the card it gets very slow - we have to do realize another solution but thank you for the good sugar
  • Aug 29, 2008
    issue 3 (tiles stop loading properly after a while) commented on by mfarnell   -   Has anyone figured out a way to 'clear' the memory used by the UIWebView as it appears allocations are limited to 10MB
    Has anyone figured out a way to 'clear' the memory used by the UIWebView as it appears allocations are limited to 10MB
  • Aug 26, 2008
    issue 4 (very slow on a device..) reported by sam.christiansen   -   What steps will reproduce the problem? 1. install demo app on a real device 2. launch the application 3. notice that the page takes a long time to load and start rendering What is the expected output? What do you see instead? I would expect performance to be similar to that of the "maps" application included with the iphone. What version of the product are you using? On what operating system? Using a snapshot of the code i grabbed 2 days ago. Please provide any additional information below. Works fine in the emulator. I noticed that the multi-touch gestures (zoom out) don't seem to be working on my phone either, but they do work in the emulator. awesome project; it's very helpful. thxx
    What steps will reproduce the problem? 1. install demo app on a real device 2. launch the application 3. notice that the page takes a long time to load and start rendering What is the expected output? What do you see instead? I would expect performance to be similar to that of the "maps" application included with the iphone. What version of the product are you using? On what operating system? Using a snapshot of the code i grabbed 2 days ago. Please provide any additional information below. Works fine in the emulator. I noticed that the multi-touch gestures (zoom out) don't seem to be working on my phone either, but they do work in the emulator. awesome project; it's very helpful. thxx
  • Aug 09, 2008
    issue 3 (tiles stop loading properly after a while) commented on by indiekiduk   -   Maybe Google have a javascript function to clear out old tiles?
    Maybe Google have a javascript function to clear out old tiles?
 
Hosted by Google Code