Just applied some changes from Adam and Dylan and uploaded a new build. Good stuff guys, thanks. Get 2.0.5 here: http://github.com/mapstraction/mxn/downloads Derek -- Derek Fowler m. +44 (0) 7966 512 369 e. dezfowler at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20100809/cf726d93/attachment.htm>
In spinning up on Mapstraction I implemented it on one of my side projects (http://www.homesassn.com/neighborhood/Map.action). My main purpose is a proof-of-concept on http://connect.garmin.com/activity/44208740. I was happy how easy it was to implement Mapstraction. In order to get the Microsoft info bubble to work I had to patch the code as described here<http://drupal.org/node/802390>. I assume that the fix I found is the same as what was meant by issue 13<http://github.com/mapstraction/mxn/issues#issue/13>. The fix on the Drupal forum worked. I?ll be happy to implement issue 13 if you need more contributors. After adding the Microsoft patch, info bubbles work Yahoo*, Google, and Microsoft; however, if you manually scroll the map that causes the info bubbles to stop working. You can try it here<http://www.homesassn.com/neighborhood/Map.action>. I presume I need to add a listener that removes and re-adds the markers if the map is scrolled. I?m curious if anyone else has run into this behavior and what they recommend? * Infomarker graphic renders poorly in Yahoo. Not sure if that is CSS conflict with my styles or what. Next up for me is: ? Debug proof-of-concept at on http://connect.garmin.com/activity/44208740. This mostly involves polylines. ? Figure out why custom markers don?t show up on the Microsoft map. ? Look into why the Infobubble on the Yahoo Map renders poorly. ? Added editing to http://www.homesassn.com/neighborhood/Map.action with draggable markers for neighborhood site moderators. I like what you guys have done! From: mapstraction-bounces at lists.mapstraction.com [mailto:mapstraction-bounces at lists.mapstraction.com] On Behalf Of Derek Fowler Sent: Monday, August 09, 2010 4:05 PM To: mapstraction at lists.mapstraction.com Subject: [Mapstraction] New build 2.0.5 Just applied some changes from Adam and Dylan and uploaded a new build. Good stuff guys, thanks. Get 2.0.5 here: http://github.com/mapstraction/mxn/downloads Derek -- Derek Fowler m. +44 (0) 7966 512 369 e. dezfowler at gmail.com<mailto:dezfowler at gmail.com> -------------------------------------------------------------------------------- This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies. Thank you for your cooperation. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20100816/cb401f29/attachment.htm>
Hi Steve, I''m unable to reproduce the error where dragging the map makes the info bubbles stop appearing. Though I also see the Yahoo style error. I think a conflict with your CSS is a good guess. Yes, Mapstraction could use your patches. Here is the basic approach that was explained to me: 1. make a fork of the project on github (website) 2. Clone using git on your machine: git clone git-repos-address folder 3. cd folder 4. make your changes 5. git status - give info about changes made on files 6. git add . or git add filename1 filename2 ... - only if you have added new files 7. git commit or git commit filename - the latter version of the command let you comment the changes on a single file 8. git push - send changes to the repo you''ve forked 9. ask for a pull on github Let the list know if you get tripped up on anything, as we''re working to make this process more public to make it easy for folks to contribute. --Adam On Mon, Aug 16, 2010 at 6:35 AM, Mitchell, Steve <Steve.Mitchell at garmin.com>wrote:> In spinning up on Mapstraction I implemented it on one of my side > projects (http://www.homesassn.com/neighborhood/Map.action). My main > purpose is a proof-of-concept on > http://connect.garmin.com/activity/44208740. I was happy how easy it was > to implement Mapstraction. > > > > In order to get the Microsoft info bubble to work I had to patch the code > as described here <http://drupal.org/node/802390>. I assume that the fix I > found is the same as what was meant by issue 13<http://github.com/mapstraction/mxn/issues#issue/13>. > The fix on the Drupal forum worked. I?ll be happy to implement issue 13 if > you need more contributors. > > > > After adding the Microsoft patch, info bubbles work Yahoo*, Google, and > Microsoft; however, if you manually scroll the map that causes the info > bubbles to stop working. You can try it here<http://www.homesassn.com/neighborhood/Map.action>. > I presume I need to add a listener that removes and re-adds the markers if > the map is scrolled. I?m curious if anyone else has run into this behavior > and what they recommend? > > > > * Infomarker graphic renders poorly in Yahoo. Not sure if that is CSS > conflict with my styles or what. > > > > Next up for me is: > > > > ? Debug proof-of-concept at on > http://connect.garmin.com/activity/44208740. This mostly involves > polylines. > > ? Figure out why custom markers don?t show up on the Microsoft > map. > > ? Look into why the Infobubble on the Yahoo Map renders poorly. > > ? Added editing to > http://www.homesassn.com/neighborhood/Map.action with draggable markers > for neighborhood site moderators. > > > > I like what you guys have done! > > > > *From:* mapstraction-bounces at lists.mapstraction.com [mailto: > mapstraction-bounces at lists.mapstraction.com] *On Behalf Of *Derek Fowler > *Sent:* Monday, August 09, 2010 4:05 PM > *To:* mapstraction at lists.mapstraction.com > *Subject:* [Mapstraction] New build 2.0.5 > > > > Just applied some changes from Adam and Dylan and uploaded a new build. > Good stuff guys, thanks. > > > > Get 2.0.5 here: > > > > http://github.com/mapstraction/mxn/downloads > > > > Derek > > > -- > Derek Fowler > m. +44 (0) 7966 512 369 > e. dezfowler at gmail.com > > > -------------------------------------------------------------------------------- > > This e-mail and any attachments may contain confidential material for the > sole use of the intended recipient. If you are not the intended recipient, > please be aware that any disclosure, copying, distribution or use of this > e-mail or any attachment is prohibited. If you have received this e-mail in > error, please contact the sender and delete all copies. > > > > Thank you for your cooperation. > > > _______________________________________________ > Mapstraction mailing list > Mapstraction at lists.mapstraction.com > http://lists.mapstraction.com/listinfo.cgi/mapstraction-mapstraction.com > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20100816/25b7a3c5/attachment.htm>
Thanks for the instructions, Adam. I?m used to SVN, so this was a bit different, but straight forward. I made the change and tested it on http://www.homesassn.com/neighborhood/Map.action. From: adam at duvander.com [mailto:adam at duvander.com] On Behalf Of Adam DuVander Sent: Monday, August 16, 2010 1:20 PM To: mapstraction at lists.mapstraction.com Cc: Mitchell, Steve Subject: Re: [Mapstraction] Bugfix Question Hi Steve, I''m unable to reproduce the error where dragging the map makes the info bubbles stop appearing. Though I also see the Yahoo style error. I think a conflict with your CSS is a good guess. Yes, Mapstraction could use your patches. Here is the basic approach that was explained to me: 1. make a fork of the project on github (website) 2. Clone using git on your machine: git clone git-repos-address folder 3. cd folder 4. make your changes 5. git status - give info about changes made on files 6. git add . or git add filename1 filename2 ... - only if you have added new files 7. git commit or git commit filename - the latter version of the command let you comment the changes on a single file 8. git push - send changes to the repo you''ve forked 9. ask for a pull on github Let the list know if you get tripped up on anything, as we''re working to make this process more public to make it easy for folks to contribute. --Adam On Mon, Aug 16, 2010 at 6:35 AM, Mitchell, Steve <Steve.Mitchell at garmin.com<mailto:Steve.Mitchell at garmin.com>> wrote: In spinning up on Mapstraction I implemented it on one of my side projects (http://www.homesassn.com/neighborhood/Map.action). My main purpose is a proof-of-concept on http://connect.garmin.com/activity/44208740. I was happy how easy it was to implement Mapstraction. In order to get the Microsoft info bubble to work I had to patch the code as described here<http://drupal.org/node/802390>. I assume that the fix I found is the same as what was meant by issue 13<http://github.com/mapstraction/mxn/issues#issue/13>. The fix on the Drupal forum worked. I?ll be happy to implement issue 13 if you need more contributors. After adding the Microsoft patch, info bubbles work Yahoo*, Google, and Microsoft; however, if you manually scroll the map that causes the info bubbles to stop working. You can try it here<http://www.homesassn.com/neighborhood/Map.action>. I presume I need to add a listener that removes and re-adds the markers if the map is scrolled. I?m curious if anyone else has run into this behavior and what they recommend? * Infomarker graphic renders poorly in Yahoo. Not sure if that is CSS conflict with my styles or what. Next up for me is: ? Debug proof-of-concept at on http://connect.garmin.com/activity/44208740. This mostly involves polylines. ? Figure out why custom markers don?t show up on the Microsoft map. ? Look into why the Infobubble on the Yahoo Map renders poorly. ? Added editing to http://www.homesassn.com/neighborhood/Map.action with draggable markers for neighborhood site moderators. I like what you guys have done! From: mapstraction-bounces at lists.mapstraction.com<mailto:mapstraction-bounces at lists.mapstraction.com> [mailto:mapstraction-bounces at lists.mapstraction.com<mailto:mapstraction-bounces at lists.mapstraction.com>] On Behalf Of Derek Fowler Sent: Monday, August 09, 2010 4:05 PM To: mapstraction at lists.mapstraction.com<mailto:mapstraction at lists.mapstraction.com> Subject: [Mapstraction] New build 2.0.5 Just applied some changes from Adam and Dylan and uploaded a new build. Good stuff guys, thanks. Get 2.0.5 here: http://github.com/mapstraction/mxn/downloads Derek -- Derek Fowler m. +44 (0) 7966 512 369 e. dezfowler at gmail.com<mailto:dezfowler at gmail.com> -------------------------------------------------------------------------------- This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies. Thank you for your cooperation. _______________________________________________ Mapstraction mailing list Mapstraction at lists.mapstraction.com<mailto:Mapstraction at lists.mapstraction.com> http://lists.mapstraction.com/listinfo.cgi/mapstraction-mapstraction.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20100817/aa27d946/attachment.htm>