From frkator at gmail.com Sat Jun 1 07:34:20 2013 From: frkator at gmail.com (Ivan Sipka) Date: Sat, 1 Jun 2013 16:34:20 +0200 Subject: [OpenLayers-Dev] Openlayers 2.12 canvas renderer issue Message-ID: Hello, this is my scenario: a map with one baselayer and one overlay vector layer with one point feature in it. I want to obtain the feature DOM node via document.getElementById. Feature gets drawn on screen in both cases. If I use canvas renderer the element gets drawn on map but: 1) document.getElementById(feature.geometry.id) returns null 2) DOM tree inspection via chrome debugger shows no elements in canvas If I use SVG renderer, I can see it in the DOM tree and document.getElementById(feature.geometry.id) returns it. Example code:
Default renderer is Canvas if you want to test it you can give the canvas implementation as a URL parameter like this: example.html example.html?renderer=Canvas or example.html?renderer=SVG Judging by the canvas example I'm doing it right. I tried to alternate OL versions from 2.12 to 2.13dev but it didn't help. Why is this happening? Is there any clever workaround? thanks for your time linski -------------- next part -------------- An HTML attachment was scrubbed... URL: From ahocevar at opengeo.org Sat Jun 1 08:46:39 2013 From: ahocevar at opengeo.org (Andreas Hocevar) Date: Sat, 1 Jun 2013 09:46:39 -0600 Subject: [OpenLayers-Dev] Openlayers 2.12 canvas renderer issue In-Reply-To: References: Message-ID: This is expected behavior. Canvas works like a drawing board. Elements drawn to the canvas do not have a DOM representation. Why don't you use in your vector layer's features array to see if your feature was fetched? Andreas. On Sat, Jun 1, 2013 at 8:34 AM, Ivan Sipka wrote: > Hello, > > this is my scenario: a map with one baselayer and one overlay vector layer > with one point feature in it. I want to obtain the feature DOM node via > document.getElementById. > Feature gets drawn on screen in both cases. > > If I use canvas renderer the element gets drawn on map but: > > 1) document.getElementById(feature.geometry.id) returns null > 2) DOM tree inspection via chrome debugger shows no elements in canvas > > If I use SVG renderer, I can see it in the DOM tree and > document.getElementById(feature.geometry.id) returns it. > > Example code: > > > > > > > > > > >
> > > > Default renderer is Canvas if you want to test it you can give the canvas > implementation as a URL parameter like this: > > example.html > example.html?renderer=Canvas > > or > > example.html?renderer=SVG > > Judging by the canvas example I'm > doing it right. I tried to alternate OL versions from 2.12 to 2.13dev but > it didn't help. > > Why is this happening? Is there any clever workaround? > > thanks for your time > linski > > _______________________________________________ > Dev mailing list > Dev at lists.osgeo.org > http://lists.osgeo.org/mailman/listinfo/openlayers-dev > > -- Andreas Hocevar OpenGeo - http://opengeo.org/ Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bartvde at opengeo.org Thu Jun 6 05:31:13 2013 From: bartvde at opengeo.org (Bart van den Eijnden) Date: Thu, 6 Jun 2013 14:31:13 +0200 Subject: [OpenLayers-Dev] ANNOUNCEMENT: 2.13 RC6 released Message-ID: The OpenLayers dev team is proud to announce the 6th release candidate of OpenLayers 2.13! RC6 comes about one week after RC5, and fixes three issues: * Protect ZoomBox from division by zero https://github.com/openlayers/openlayers/pull/996 * Kinetic dragging causes multiple requests and hangs an application https://github.com/openlayers/openlayers/pull/991 * Enable TileManager by default https://github.com/openlayers/openlayers/pull/998 See https://github.com/openlayers/openlayers/issues?milestone=13&state=closed for details. We invite you to help us test the 2.13 release candidate! To test 2.13 in your applications, include the following tag in your OpenLayers-powered page: As always, the source is available at http://openlayers.org/download/. Bug reports can be filed in GitHub at https://github.com/openlayers/openlayers/issues. Make sure to use 2.13-RC6 in the title of the issue (and for developers, please assign those tickets to the 2.13-rc7 milestone). Thanks! -- Bart van den Eijnden OpenGeo - http://opengeo.org Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.mamano at gmail.com Thu Jun 6 13:04:22 2013 From: xavier.mamano at gmail.com (Xavier Mamano (jorix)) Date: Thu, 6 Jun 2013 13:04:22 -0700 (PDT) Subject: [OpenLayers-Dev] Something is broken in the compressed OpenLayers.js Message-ID: <1370549062306-5058541.post@n6.nabble.com> Try: http://openlayers.org/dev/examples/controls.html -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Something-is-broken-in-the-compressed-OpenLayers-js-tp5058541.html Sent from the OpenLayers Dev mailing list archive at Nabble.com. From ahocevar at opengeo.org Thu Jun 6 14:23:26 2013 From: ahocevar at opengeo.org (Andreas Hocevar) Date: Thu, 6 Jun 2013 23:23:26 +0200 Subject: [OpenLayers-Dev] Something is broken in the compressed OpenLayers.js In-Reply-To: <1370549062306-5058541.post@n6.nabble.com> References: <1370549062306-5058541.post@n6.nabble.com> Message-ID: See http://github.com/openlayers/openlayers/pulls/1000. Fixed. Andreas. On Thu, Jun 6, 2013 at 10:04 PM, Xavier Mamano (jorix) < xavier.mamano at gmail.com> wrote: > Try: http://openlayers.org/dev/examples/controls.html > > > > -- > View this message in context: > http://osgeo-org.1560.x6.nabble.com/Something-is-broken-in-the-compressed-OpenLayers-js-tp5058541.html > Sent from the OpenLayers Dev mailing list archive at Nabble.com. > _______________________________________________ > Dev mailing list > Dev at lists.osgeo.org > http://lists.osgeo.org/mailman/listinfo/openlayers-dev > -- Andreas Hocevar OpenGeo - http://opengeo.org/ Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bartvde at opengeo.org Fri Jun 7 02:05:16 2013 From: bartvde at opengeo.org (Bart van den Eijnden) Date: Fri, 7 Jun 2013 11:05:16 +0200 Subject: [OpenLayers-Dev] ANNOUNCEMENT: 2.13 RC7 released Message-ID: <01ECE847-26DE-4EC4-AFC7-EBE49FBE749C@opengeo.org> The OpenLayers dev team is proud to announce the 7th release candidate of OpenLayers 2.13! RC7 comes about a day after RC6, and fixes three issues: * Fix dependencies now that TileManager was used by default https://github.com/openlayers/openlayers/pull/1000 and https://github.com/openlayers/openlayers/pull/1002 * Fix broken tests now that TileManager was used by default https://github.com/openlayers/openlayers/pull/1003 * LayerSwitcher doesnt switch layer entry correctly if Layer is not visible. https://github.com/openlayers/openlayers/pull/997 See https://github.com/openlayers/openlayers/issues?milestone=14&state=closed for details. We invite you to help us test the 2.13 release candidate! To test 2.13 in your applications, include the following tag in your OpenLayers-powered page: As always, the source is available at http://openlayers.org/download/. Bug reports can be filed in GitHub at https://github.com/openlayers/openlayers/issues. Make sure to use 2.13-RC7 in the title of the issue (and for developers, please assign those tickets to the 2.13-rc8 milestone). Thanks! -- Bart van den Eijnden OpenGeo - http://opengeo.org Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bartvde at opengeo.org Thu Jun 13 00:46:36 2013 From: bartvde at opengeo.org (Bart van den Eijnden) Date: Thu, 13 Jun 2013 09:46:36 +0200 Subject: [OpenLayers-Dev] MOTION: release 2.13RC7 as final Message-ID: Since 2.13RC7 was released last Friday and no new regressions have been reported since then, I'd like the PSC to vote on a motion to release 2.13RC7 as final. Thanks to Andreas for all his hard work on solving the RC bugs, whilst I only had to manage the release process itself (the easy part). Best regards, Bart -- Bart van den Eijnden OpenGeo - http://opengeo.org Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ahocevar at opengeo.org Thu Jun 13 05:18:44 2013 From: ahocevar at opengeo.org (Andreas Hocevar) Date: Thu, 13 Jun 2013 14:18:44 +0200 Subject: [OpenLayers-Dev] MOTION: release 2.13RC7 as final In-Reply-To: References: Message-ID: +1. Thanks Bart for your release management work! Andreas. On Jun 13, 2013 9:46 AM, "Bart van den Eijnden" wrote: > Since 2.13RC7 was released last Friday and no new regressions have been > reported since then, I'd like the PSC to vote on a motion to release > 2.13RC7 as final. > > Thanks to Andreas for all his hard work on solving the RC bugs, whilst I > only had to manage the release process itself (the easy part). > > Best regards, > Bart > > -- > Bart van den Eijnden > OpenGeo - http://opengeo.org > Expert service straight from the developers. > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From eric.lemoine at camptocamp.com Fri Jun 14 05:17:03 2013 From: eric.lemoine at camptocamp.com (Eric Lemoine) Date: Fri, 14 Jun 2013 14:17:03 +0200 Subject: [OpenLayers-Dev] MOTION: release 2.13RC7 as final In-Reply-To: References: Message-ID: Le jeudi 13 juin 2013, Andreas Hocevar a ?crit : > +1. Thanks Bart for your release management work! > +1 Sorry for being dormant on ol2. > -- Eric Lemoine Camptocamp France SAS Savoie Technolac, BP 352 73377 Le Bourget du Lac, Cedex Tel : 00 33 4 79 44 44 94 Mail : eric.lemoine at camptocamp.com http://www.camptocamp.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From pagameba at gmail.com Fri Jun 14 06:05:15 2013 From: pagameba at gmail.com (Paul Spencer) Date: Fri, 14 Jun 2013 09:05:15 -0400 Subject: [OpenLayers-Dev] =?utf-8?q?MOTION=3A_release_2=2E13RC7_as_final?= In-Reply-To: References: Message-ID: +1 Great work guys, Paul -- Paul Spencer Sent with Airmail On 13 June, 2013 at 13 Jun, 3:46:46 AM, Bart van den Eijnden (bartvde at opengeo.org) wrote: Since 2.13RC7 was released last Friday and no new regressions have been reported since then, I'd like the PSC to vote on a motion to release 2.13RC7 as final. Thanks to Andreas for all his hard work on solving the RC bugs, whilst I only had to manage the release process itself (the easy part). Best regards, Bart --? Bart van den Eijnden OpenGeo -?http://opengeo.org Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bartvde at opengeo.org Mon Jun 17 05:07:34 2013 From: bartvde at opengeo.org (Bart van den Eijnden) Date: Mon, 17 Jun 2013 14:07:34 +0200 Subject: [OpenLayers-Dev] MOTION: release 2.13RC7 as final In-Reply-To: References: Message-ID: <2E48CBDF-2A0C-4A86-8D25-8F144630E0F2@opengeo.org> With 3 +1's and no -1's I declare this motion passed. Best regards, Bart -- Bart van den Eijnden OpenGeo - http://opengeo.org Expert service straight from the developers. On Jun 13, 2013, at 9:46 AM, Bart van den Eijnden wrote: > Since 2.13RC7 was released last Friday and no new regressions have been reported since then, I'd like the PSC to vote on a motion to release 2.13RC7 as final. > > Thanks to Andreas for all his hard work on solving the RC bugs, whilst I only had to manage the release process itself (the easy part). > > Best regards, > Bart > > -- > Bart van den Eijnden > OpenGeo - http://opengeo.org > Expert service straight from the developers. > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From list at rdewit.net Mon Jun 17 05:25:20 2013 From: list at rdewit.net (Roald de Wit) Date: Mon, 17 Jun 2013 22:25:20 +1000 Subject: [OpenLayers-Dev] MOTION: release 2.13RC7 as final In-Reply-To: <2E48CBDF-2A0C-4A86-8D25-8F144630E0F2@opengeo.org> References: <2E48CBDF-2A0C-4A86-8D25-8F144630E0F2@opengeo.org> Message-ID: <51BF0030.3090707@rdewit.net> Great news! Thanks to all involved in this release, especially Andreas and Bart. Roald On 17/06/13 22:07, Bart van den Eijnden wrote: > With 3 +1's and no -1's I declare this motion passed. > > Best regards, > Bart > > -- > Bart van den Eijnden > OpenGeo - http://opengeo.org > Expert service straight from the developers. > > > > On Jun 13, 2013, at 9:46 AM, Bart van den Eijnden > wrote: > >> Since 2.13RC7 was released last Friday and no new regressions have >> been reported since then, I'd like the PSC to vote on a motion to >> release 2.13RC7 as final. >> >> Thanks to Andreas for all his hard work on solving the RC bugs, >> whilst I only had to manage the release process itself (the easy part). >> >> Best regards, >> Bart >> >> -- >> Bart van den Eijnden >> OpenGeo - http://opengeo.org >> Expert service straight from the developers. >> >> >> > > > > _______________________________________________ > Dev mailing list > Dev at lists.osgeo.org > http://lists.osgeo.org/mailman/listinfo/openlayers-dev From bartvde at opengeo.org Mon Jun 17 05:39:06 2013 From: bartvde at opengeo.org (Bart van den Eijnden) Date: Mon, 17 Jun 2013 14:39:06 +0200 Subject: [OpenLayers-Dev] OpenLayers 2.13 released Message-ID: The OpenLayers Development Team is proud to announce the final release of OpenLayers 2.13! OpenLayers 2.13 can be downloaded from http://openlayers.org/download/ OpenLayers 2.13 offers new features and improvements in various areas such as: Partial redesign of the Google v3 Layer Partial redesign of Control.ModifyFeature to not use a built-in SelectFeature control, to better support mobile devices Optional tile queueing with the introduction of OpenLayers.TileManager Map: Animated zooming and GPU support (Preliminary) support for IE10 touch WPS client Please look at the release notes for more information: https://github.com/openlayers/openlayers/blob/master/notes/2.13.md -- Bart van den Eijnden OpenGeo - http://opengeo.org Expert service straight from the developers. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Vladimir.Mikulicic at br.de Mon Jun 17 06:51:17 2013 From: Vladimir.Mikulicic at br.de (Mikulicic, Vladimir) Date: Mon, 17 Jun 2013 13:51:17 +0000 Subject: [OpenLayers-Dev] Markers contains HTML Message-ID: Hello all, is it possible that a Marker contains HTML? Something like this: http://www.bingmapsportal.com/ISDK/AjaxV7#Pushpins15 I would appreciate an example :) Thanks in advance. Vladimir -------------------------------------------------------------------------------------------------- Bayerischer Rundfunk; Rundfunkplatz 1; 80335 M?nchen Telefon: +49 89 590001; E-Mail: info at BR.de; Website: http://www.BR.de -------------- next part -------------- An HTML attachment was scrubbed... URL: