#leaflet | Logs for 2014-04-14

Back
[00:07:15] -!- micges has quit [Quit: Leaving]
[00:09:06] Guest7101 is now known as The_Ball
[00:11:59] -!- JT-Shop has quit [Ping timeout: 276 seconds]
[00:11:59] -!- jthornton has quit [Ping timeout: 276 seconds]
[00:13:28] <slu9freek> summatusmentis: Excellent, thank you. This makes sense to me. I use a pointsToLayer in my geoJson call, so this does exactly what it says. And then it returns a GeoJSON layer (which is basically a group of layers of points), right?
[00:13:32] -!- Nick001-shop has quit [Remote host closed the connection]
[00:13:38] -!- thomaslindstr_m has quit [Quit: Leaving...]
[00:14:07] -!- ve7it has quit [Remote host closed the connection]
[00:15:29] -!- jthornton_ has quit [Ping timeout: 252 seconds]
[00:15:29] -!- JT-Shop_ has quit [Ping timeout: 252 seconds]
[00:15:57] <slu9freek> I am working on a fusion application that produces GeoJSON files. The files are 1 FeatureCollection of "epicenters" and each Feature therein has a "related" property of "aftershocks" which is a FeatureCollection. I currently have an a JS app that can style and plot these, but I am looking to add LeafletSlider which examines the time of each Feature and lets you views specific periods.
[00:18:12] <summatusmentis> if pointsToLayer is making each individual point a member of the GeoJSON object, then yeah, you're likely getting 1 layer per point as a part of the group of layers
[00:18:43] <slu9freek> My question is this: since the slider needs all the points, I can't just pass it the GeoJSON object (it'll miss the aftershocks). Would it work to join all the points to a single GeoJSON layer (instead of a GeoJSON layer for each individual epicenter and set of aftershocks), then add the slider?
[00:19:14] <summatusmentis> so, that's the part I'm not sure about
[00:20:03] <slu9freek> i.e. Do points keep their properties after being passed through L.geoJson() ?
[00:20:07] <summatusmentis> it's _possible_, since Points are called Basic Types, and not Layers, that the L.GeoJSON/FeatureGroup is keeping them all togther
[00:20:11] <summatusmentis> yes, they should
[00:21:05] -!- gushhtab has quit [Ping timeout: 276 seconds]
[00:21:22] <summatusmentis> oh
[00:21:28] <summatusmentis> so I misread the docs
[00:21:38] <summatusmentis> what is your pointsToLayer callback doing?
[00:22:15] <summatusmentis> everything being read from GeoJSON should be associated with whatever the member object is
[00:22:21] <summatusmentis> (polygon, point, etc.)
[00:22:52] <summatusmentis> so if the GeoJSON itself lists attributes with the members, you should be able to access those attributes
[00:23:05] <slu9freek> summatusmentis: the pointsToLayer callback is just checking for stylization in the properties and applying them.
[00:23:11] <summatusmentis> ok
[00:23:36] <slu9freek> summatusmentis: Ok, I think I'm gonna try this. Do you know if having fewer layers (by adding to a single layer) affects speed?
[00:23:59] <summatusmentis> I would uess that it does, in extreme cases
[00:24:02] <summatusmentis> guess*
[00:24:08] <summatusmentis> each layer is a div underneath
[00:24:15] <summatusmentis> and lots of things in the DOM slows stuff down
[00:24:29] -!- NickParker-LCNC has quit [Ping timeout: 240 seconds]
[00:24:35] <summatusmentis> depends on what order of magnitude we're talking about
[00:25:17] <summatusmentis> "Smart polyline/polygon rendering with dynamic clipping and simplification makes it responsive even when displaying objects with thousands of points"
[00:25:32] <summatusmentis> the difference between 200 and 300 probably doesn't matter
[00:25:47] <summatusmentis> the difference between 10,000 and 50,000 might
[00:26:03] <summatusmentis> (depends on the device/browser environment as well)
[00:26:21] <slu9freek> summatusmentis: atm, I'm pulling results from Twitter and plotting, so that scale is hard to reach without hitting the Twitter rate-limit
[00:26:50] <summatusmentis> my guess is you're fine
[00:26:57] <summatusmentis> are you noticing slowness?
[00:32:07] <slu9freek> summatusmentis: A little, but it's hard to tell if there's anything I can do about it. I am embedding base64 images in the properties sometimes, and sometimes the tiles just load slowly.
[00:35:25] <summatusmentis> tiles loading slowly isn't because of your overlays
[00:37:24] <slu9freek> Can the GeoJSON layer have anything added to it (e.g. markers, circlemarkers, circles, etc.) ? I have circles representing the radius of each epicenter.
[00:38:23] -!- andypugh has quit [Quit: andypugh]
[00:38:41] <summatusmentis> sure, GeoJSON extends FeatureGroup, which extends LayerGroup, which has both an add() and an addLayer() method
[00:38:46] <summatusmentis> not sure if you culd then export that way
[00:38:58] <summatusmentis> but there's nothing stopping you from adding layers
[00:40:56] <slu9freek> summatusmentis: Well, I was planning on using addData on the GeoJSON layer, but I'm not sure how to affect styling this way :/
[00:42:12] <slu9freek> Do you know if setStyle modifies an internal state machine? Then reset undoes whatever has been set?
[00:42:44] <summatusmentis> you'd have to go look, i'm not certain about the details
[00:42:53] -!- asdfasd has quit [Ping timeout: 240 seconds]
[00:43:36] <slu9freek> Docs don't say much...
[00:43:47] <slu9freek> oh it accepts a function! duh...
[00:43:53] <slu9freek> summatusmentis: thanks for your help!
[00:44:11] <summatusmentis> docs don't say much, but source sure does :)
[00:45:17] -!- JT-Shop has quit [Ping timeout: 250 seconds]
[00:45:47] -!- jthornton has quit [Ping timeout: 276 seconds]
[00:45:55] <slu9freek> summatusmentis: Is leaflet not massive? lol
[00:46:36] <summatusmentis> 281kb in non-compressed, non-minified form
[00:46:51] <summatusmentis> pretty modular too, iirc
[00:48:16] <summatusmentis> check out lines 49-71 at https://github.com/Leaflet/Leaflet/blob/master/src/layer/GeoJSON.js
[00:48:49] <summatusmentis> looks like it resets to whatever the default style for the layer passed in was (resetStyle does)
[00:56:59] -!- NickParker has quit [Ping timeout: 250 seconds]
[01:09:07] -!- jthornton_ has quit [Ping timeout: 250 seconds]
[01:09:23] -!- JT-Shop has quit [Ping timeout: 252 seconds]
[01:14:31] -!- JT-Shop has quit [Ping timeout: 252 seconds]
[01:14:31] -!- jthornton has quit [Ping timeout: 252 seconds]
[01:14:57] -!- dybskiy [dybskiy!~dybskiy@2601:7:2200:1bf:c916:4ed9:3434:e6c4] has joined #leaflet
[01:19:20] -!- dybskiy has quit [Ping timeout: 258 seconds]
[01:21:17] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[01:22:48] -!- c-bob|| has quit [Ping timeout: 245 seconds]
[01:28:50] <slu9freek> summatusmentis: that's helpful, but I'm not that good at JavaScript and that's pretty advanced. So I'm pretty sure that the function in setStyle needs to return an object. do you know if it's possible to convert a marker to a circlemarker with setStyle?
[01:29:03] -!- jthornton has quit [Ping timeout: 245 seconds]
[01:29:17] -!- JT-Shop has quit [Ping timeout: 240 seconds]
[01:31:47] <summatusmentis> I'm pretty sure not
[01:32:52] <summatusmentis> http://leafletjs.com/reference.html#path-options
[01:33:01] <summatusmentis> those are the valid keys of the object you can return
[01:34:11] <summatusmentis> your pointsToLayer function, I think, is where you'd decide how you want points to be handled
[01:34:17] <summatusmentis> (as circleMarkers, for instance)
[01:39:44] -!- dybskiy has quit [Remote host closed the connection]
[01:46:52] -!- GJdan has quit [Remote host closed the connection]
[01:52:25] -!- GJdan [GJdan!~dan@d154-5-205-24.bchsia.telus.net] has joined #leaflet
[01:56:44] <slu9freek> summatusmentis: I dont have a pointsToLayer in the new scheme... I add Features to a GeoJSON layer via addData then I setStyle on that layer and it goes through and styles the Features based on their properties.
[02:01:00] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[02:07:11] -!- shaun413__ has quit [Ping timeout: 250 seconds]
[02:08:08] <slu9freek> summatusmentis: A pointsToLayer is exactly what I needed, and I figured out how to incorporate it by reading the source code. You're a boss haha
[02:11:32] -!- PetefromTn_ has quit [Quit: Not that there is anything wrong with that]
[02:14:41] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[02:37:05] -!- AR_ has quit [Ping timeout: 250 seconds]
[02:43:09] -!- i_tarzan has quit [Ping timeout: 250 seconds]
[02:52:35] -!- LatheBuilder has quit [Quit: Leaving]
[02:54:48] -!- moorbo has quit []
[03:08:07] -!- bilboquet has quit [Remote host closed the connection]
[03:15:11] zultron_ is now known as zultron
[03:17:42] -!- dybskiy [dybskiy!~dybskiy@c-24-21-213-90.hsd1.or.comcast.net] has joined #leaflet
[03:31:41] -!- karavanjo has quit [Ping timeout: 240 seconds]
[03:58:50] -!- jthornton has quit [Ping timeout: 276 seconds]
[03:58:50] -!- JT-Shop has quit [Ping timeout: 276 seconds]
[04:12:37] -!- mhaberler has quit [Quit: mhaberler]
[04:18:33] <summatusmentis> slu9freek: I'm glad you were able to get it figured out, I didn't notice this here
[04:18:38] -!- JT-Shop_ has quit [Ping timeout: 245 seconds]
[04:18:38] -!- jthornton_ has quit [Ping timeout: 245 seconds]
[04:47:28] -!- dybskiy has quit [Remote host closed the connection]
[04:54:14] -!- karavanjo [karavanjo!~kvirc@leased-line-brest-91-149-154-34.brest.telecom.by] has joined #leaflet
[05:00:23] -!- FinboySlick has quit [Quit: Leaving.]
[05:03:11] -!- Fox_Muldr has quit [Ping timeout: 276 seconds]
[05:25:55] -!- Groguard has quit [Ping timeout: 256 seconds]
[05:33:18] -!- ries has quit [Quit: ries]
[05:38:23] -!- somenewguy has quit [Remote host closed the connection]
[05:42:48] -!- Noxz has quit [Ping timeout: 240 seconds]
[05:48:49] -!- Tecan has quit [Quit: Live Long And Phosphor!]
[05:51:17] -!- FreezingCold has quit [Ping timeout: 276 seconds]
[05:52:33] -!- Ag-MEEN has quit [Ping timeout: 252 seconds]
[06:02:26] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[06:05:39] -!- kwallace2 has quit [Ping timeout: 252 seconds]
[06:06:33] -!- dybskiy has quit [Ping timeout: 245 seconds]
[06:09:07] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[06:10:51] -!- dybskiy_ [dybskiy_!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[06:13:17] -!- dybskiy has quit [Ping timeout: 240 seconds]
[06:15:03] -!- dybskiy_ has quit [Ping timeout: 250 seconds]
[06:34:18] -!- archivist_herron has quit [Ping timeout: 240 seconds]
[06:43:36] -!- mle_ [mle_!~mle@91-224-149-44.tetaneutral.net] has joined #leaflet
[06:50:51] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[06:53:41] -!- mle_ has quit [Ping timeout: 276 seconds]
[06:54:03] -!- mle_ [mle_!~mle@mir31-1-82-224-13-158.fbx.proxad.net] has joined #leaflet
[06:55:51] Groguard is now known as zz_Groguard
[06:59:39] -!- pjm has quit [Read error: Connection reset by peer]
[07:01:39] -!- The_Ball has quit [Ping timeout: 258 seconds]
[07:10:41] -!- quiqua [quiqua!~quiqua@port-212-202-227-184.static.qsc.de] has joined #leaflet
[07:10:54] -!- mle__ [mle__!~mle@91-224-149-44.tetaneutral.net] has joined #leaflet
[07:11:27] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[07:14:41] -!- mle_ has quit [Ping timeout: 258 seconds]
[07:16:26] -!- dybskiy has quit [Ping timeout: 276 seconds]
[07:23:23] -!- tjb1 has quit [Ping timeout: 252 seconds]
[07:24:05] -!- larryone [larryone!~larryone@178.167.254.166.threembb.ie] has joined #leaflet
[07:24:45] -!- md-2 [md-2!~md-2@host86-181-177-125.range86-181.btcentralplus.com] has joined #leaflet
[07:30:05] -!- karavanjo has quit [Ping timeout: 240 seconds]
[07:30:08] -!- larryone1 [larryone1!~larryone@178.167.254.149.threembb.ie] has joined #leaflet
[07:32:55] -!- larryone has quit [Ping timeout: 252 seconds]
[07:38:31] -!- zz_Groguard has quit [Ping timeout: 256 seconds]
[07:41:31] -!- Loetmichel has quit [Ping timeout: 258 seconds]
[07:41:51] -!- ink has quit [Remote host closed the connection]
[07:56:11] -!- psha has quit [Quit: Lost terminal]
[08:11:09] -!- larryone1 has quit [Quit: This computer has gone to sleep]
[08:11:37] -!- i_tarzan has quit [Ping timeout: 250 seconds]
[08:12:55] -!- Komzpa has quit [Ping timeout: 250 seconds]
[08:14:03] -!- dybskiy_ [dybskiy_!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[08:16:32] -!- thomaslindstr_m [thomaslindstr_m!~thomaslin@37-46-176-106.customers.ownit.se] has joined #leaflet
[08:18:42] -!- dybskiy_ has quit [Ping timeout: 258 seconds]
[08:30:13] -!- larryone [larryone!~larryone@185.32.152.150] has joined #leaflet
[08:30:32] -!- mhaberler has quit [Ping timeout: 276 seconds]
[08:53:20] -!- psha[work] [psha[work]!~psha@psha.org.ru] has joined #leaflet
[08:53:53] -!- Groguard has quit [Ping timeout: 256 seconds]
[09:00:55] -!- syyl has quit [Ping timeout: 252 seconds]
[09:01:05] -!- syyl_ws has quit [Ping timeout: 276 seconds]
[09:03:53] zz_Groguard is now known as Groguard
[09:08:51] -!- larryone has quit [Quit: This computer has gone to sleep]
[09:11:18] -!- larryone [larryone!~larryone@185.32.152.150] has joined #leaflet
[09:11:21] -!- Einar has quit [Quit: Leaving.]
[09:14:47] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[09:16:45] -!- larryone has quit [Quit: This computer has gone to sleep]
[09:19:56] -!- dybskiy has quit [Ping timeout: 276 seconds]
[09:24:23] -!- larryone [larryone!~larryone@185.32.152.150] has joined #leaflet
[09:31:08] -!- kludge` has quit [Ping timeout: 245 seconds]
[09:32:28] -!- amiri_ [amiri_!~amiri@cpe-76-95-109-253.socal.res.rr.com] has joined #leaflet
[09:35:17] -!- amiri has quit [Ping timeout: 240 seconds]
[09:36:07] -!- kludge` [kludge`!~comet@unaffiliated/espiral] has joined #leaflet
[09:44:53] -!- Groguard has quit [Ping timeout: 256 seconds]
[09:45:34] -!- steve_stallings has quit [Ping timeout: 240 seconds]
[09:45:54] -!- inventor42 has quit [Ping timeout: 240 seconds]
[09:46:15] -!- Jeebiss_ has quit [Ping timeout: 240 seconds]
[09:52:57] -!- larryone1 [larryone1!~larryone@185.32.152.150] has joined #leaflet
[09:53:29] -!- carper has quit [Quit: Leaving]
[09:55:17] -!- larryone has quit [Ping timeout: 240 seconds]
[10:11:31] -!- Groguard has quit [Ping timeout: 256 seconds]
[10:15:28] -!- Einar has quit [Read error: Connection reset by peer]
[10:18:58] -!- nots has quit [Ping timeout: 240 seconds]
[10:19:24] -!- dway [dway!~dway@gas45-2-82-239-0-32.fbx.proxad.net] has joined #leaflet
[10:23:03] -!- sumpfralle has quit [Quit: Leaving.]
[10:24:00] larryone1 is now known as larryone
[10:27:40] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[10:28:13] -!- skunkworks has quit [Ping timeout: 245 seconds]
[10:36:36] -!- ddd [ddd!5cfd4d04@gateway/web/freenode/ip.92.253.77.4] has joined #leaflet
[10:37:00] ddd is now known as Guest23126
[10:37:01] -!- Guest23126 has quit [Client Quit]
[10:43:08] -!- Deejay has quit [Quit: bbl]
[10:43:33] -!- thomaslindstr_m has quit [Quit: Leaving...]
[10:48:03] -!- tinkerer has quit [Ping timeout: 250 seconds]
[10:48:43] -!- nots has quit [Ping timeout: 252 seconds]
[11:00:28] -!- witnit has quit [Ping timeout: 258 seconds]
[11:02:46] -!- nots_ has quit [Ping timeout: 258 seconds]
[11:05:13] -!- sumpfralle has quit [Read error: Connection reset by peer]
[11:12:57] -!- amnesic [amnesic!~loic@lbl44-2-88-185-233-179.fbx.proxad.net] has joined #leaflet
[11:15:44] -!- thomaslindstr_m [thomaslindstr_m!~thomaslin@37-46-176-106.customers.ownit.se] has joined #leaflet
[11:16:21] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[11:19:08] -!- sumpfralle1 has quit [Quit: Leaving.]
[11:20:43] -!- dybskiy has quit [Ping timeout: 245 seconds]
[11:22:05] -!- FreezingCold has quit [Ping timeout: 252 seconds]
[11:32:23] -!- amnesic has quit [Ping timeout: 245 seconds]
[11:32:36] -!- MacGalempsy_ has quit [Read error: Connection reset by peer]
[11:36:23] -!- i_tarzan has quit [Ping timeout: 252 seconds]
[11:42:11] -!- Groguard has quit [Ping timeout: 256 seconds]
[11:51:55] -!- b_b [b_b!ejabberd@81.18.178.14] has joined #leaflet
[11:51:55] -!- b_b has quit [Changing host]
[11:51:56] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has joined #leaflet
[11:54:00] -!- calvinmetcalf [calvinmetcalf!uid25915@gateway/web/irccloud.com/x-xowrhrznmzgfbcsd] has joined #leaflet
[12:00:29] zz_Groguard is now known as Groguard
[12:00:57] -!- balestrino has quit [Ping timeout: 252 seconds]
[12:02:29] -!- Komzpa [Komzpa!~kom@mm-71-245-57-86.leased.line.mgts.by] has joined #leaflet
[12:05:59] -!- Groguard has quit [Ping timeout: 256 seconds]
[12:06:49] -!- mle__ has quit [Ping timeout: 252 seconds]
[12:08:19] -!- valeech [valeech!~valeech@pool-71-171-123-210.clppva.fios.verizon.net] has joined #leaflet
[12:10:30] zz_Groguard is now known as Groguard
[12:15:32] -!- zlog_ has quit [Remote host closed the connection]
[12:15:34] -!- Tom_itx has quit []
[12:17:05] -!- dybskiy [dybskiy!~dybskiy@2601:7:2200:1bf:71e8:2bd8:3af4:2daa] has joined #leaflet
[12:17:17] -!- balestrino has quit [Ping timeout: 240 seconds]
[12:21:25] -!- valeech has quit [Quit: valeech]
[12:21:44] -!- dybskiy has quit [Ping timeout: 258 seconds]
[12:22:13] -!- mle__ [mle__!~mle@mir31-1-82-224-13-158.fbx.proxad.net] has joined #leaflet
[12:22:23] -!- zlog has quit [Ping timeout: 245 seconds]
[12:24:25] -!- Komzpa has quit [Ping timeout: 258 seconds]
[12:26:30] -!- Komzpa [Komzpa!~kom@mm-71-245-57-86.leased.line.mgts.by] has joined #leaflet
[12:27:06] -!- jerryitt [jerryitt!uid17132@gateway/web/irccloud.com/x-wgpvzgnclafkvtkz] has joined #leaflet
[12:27:23] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[12:29:10] -!- dybskiy_ [dybskiy_!~dybskiy@2601:7:2200:1bf:3578:273b:29c4:2008] has joined #leaflet
[12:31:45] -!- dybskiy has quit [Ping timeout: 252 seconds]
[12:33:37] -!- dybskiy_ has quit [Ping timeout: 258 seconds]
[12:40:53] -!- micges has quit [Ping timeout: 240 seconds]
[12:51:38] -!- Komzpa has quit [Remote host closed the connection]
[12:51:52] -!- Komzpa [Komzpa!~kom@mm-71-245-57-86.leased.line.mgts.by] has joined #leaflet
[12:56:19] -!- larryone has quit [Ping timeout: 250 seconds]
[12:56:52] -!- larryone [larryone!~larryone@185.32.152.150] has joined #leaflet
[13:03:54] -!- Komzpa has quit [Remote host closed the connection]
[13:04:32] -!- Komzpa [Komzpa!~kom@mm-71-245-57-86.leased.line.mgts.by] has joined #leaflet
[13:10:39] -!- skorasaurus [skorasaurus!~skors@23.sub-70-192-197.myvzw.com] has joined #leaflet
[13:16:56] -!- skorasaurus has quit [Ping timeout: 258 seconds]
[13:17:41] -!- The_Ball has quit [Ping timeout: 240 seconds]
[13:18:48] -!- skorasaurus [skorasaurus!~skors@162.6.85.219] has joined #leaflet
[13:19:59] -!- skorasaurus has quit [Client Quit]
[13:20:47] -!- Groguard has quit [Ping timeout: 256 seconds]
[13:23:44] -!- skorasaurus [skorasaurus!~skors@162.6.85.219] has joined #leaflet
[13:24:28] -!- FreezingCold has quit [Ping timeout: 245 seconds]
[13:25:37] -!- sudobangbang [sudobangbang!~chatzilla@2601:8:af00:109:2c42:287c:5d99:6df5] has joined #leaflet
[13:28:04] zz_Groguard is now known as Groguard
[13:29:15] -!- gushhtab has quit [Ping timeout: 250 seconds]
[13:29:49] -!- dybskiy [dybskiy!~dybskiy@2601:7:2200:1bf:847c:542e:a45:75d9] has joined #leaflet
[13:30:07] -!- GuShH_ has quit [Ping timeout: 250 seconds]
[13:34:34] -!- dybskiy has quit [Ping timeout: 258 seconds]
[13:36:11] -!- dhoovie has quit [Ping timeout: 246 seconds]
[13:36:36] -!- sudobangbang has quit [Quit: ChatZilla 0.9.90.1 [Firefox 28.0/20140314220517]]
[13:42:09] -!- shaun413_ has quit [Ping timeout: 252 seconds]
[13:42:25] -!- psha[work] has quit [Quit: Lost terminal]
[13:52:28] -!- almccon [almccon!~Adium@162.6.85.240] has joined #leaflet
[14:02:40] -!- Valen has quit [Quit: Leaving.]
[14:06:40] -!- Groguard has quit [Ping timeout: 256 seconds]
[14:07:47] -!- jfire [jfire!~Adium@162.6.85.250] has joined #leaflet
[14:08:25] -!- balestrino has quit []
[14:08:59] zz_Groguard is now known as Groguard
[14:10:13] -!- c-bob|| has quit [Ping timeout: 258 seconds]
[14:14:22] -!- hm2-buildmaster has quit [Ping timeout: 252 seconds]
[14:14:23] -!- seb_kuzminsky has quit [Ping timeout: 255 seconds]
[14:14:32] -!- linuxcnc-build has quit [Ping timeout: 252 seconds]
[14:18:13] -!- jfire has quit [Ping timeout: 250 seconds]
[14:22:38] -!- jfire [jfire!~Adium@162.6.85.250] has joined #leaflet
[14:30:37] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[14:35:07] -!- dybskiy has quit [Ping timeout: 250 seconds]
[14:43:34] -!- amnesic [amnesic!~loic@lbl44-2-88-185-233-179.fbx.proxad.net] has joined #leaflet
[14:48:56] -!- amnesic has quit [Quit: amnesic]
[14:49:16] -!- valeech [valeech!~valeech@50.242.62.166] has joined #leaflet
[15:05:20] -!- amnesic [amnesic!~loic@cie44-1-88-188-188-143.fbx.proxad.net] has joined #leaflet
[15:06:11] -!- Groguard has quit [Ping timeout: 256 seconds]
[15:09:04] -!- jfire has quit [Quit: Leaving.]
[15:12:07] -!- quiqua has quit [Quit: quiqua]
[15:12:45] -!- mle_ [mle_!~mle@91-224-149-44.tetaneutral.net] has joined #leaflet
[15:16:33] -!- mle__ has quit [Ping timeout: 245 seconds]
[15:18:05] -!- mle_ has quit [Ping timeout: 276 seconds]
[15:25:15] -!- thomaslindstr_m has quit [Quit: Leaving...]
[15:30:20] -!- shaun413 has quit [Ping timeout: 258 seconds]
[15:31:24] -!- dybskiy [dybskiy!~dybskiy@2601:7:2200:1bf:613e:3d62:e9d1:4362] has joined #leaflet
[15:31:52] -!- shaun413_ has quit [Ping timeout: 258 seconds]
[15:36:05] -!- dybskiy has quit [Ping timeout: 258 seconds]
[15:38:05] -!- i_tarzan has quit [Ping timeout: 240 seconds]
[15:39:53] zz_Groguard is now known as Groguard
[15:40:33] -!- PetefromTn_Andro has quit [Ping timeout: 250 seconds]
[15:44:47] <slu9freek> Has anyone here used LeafletSlider before?
[15:47:12] -!- arvidkahl has quit [Ping timeout: 258 seconds]
[16:03:05] -!- i_tarzan has quit [Ping timeout: 250 seconds]
[16:09:23] -!- arvidkahl [arvidkahl!~arvidkahl@cable-86-56-26-185.cust.telecolumbus.net] has joined #leaflet
[16:09:33] -!- gushhtab2 has quit [Ping timeout: 252 seconds]
[16:09:37] -!- jfire [jfire!~Adium@162.6.85.250] has joined #leaflet
[16:10:53] -!- GuShH_ has quit [Ping timeout: 250 seconds]
[16:11:30] -!- thomaslindstr_m [thomaslindstr_m!~thomaslin@c80-216-22-126.bredband.comhem.se] has joined #leaflet
[16:15:34] -!- AndChat-79476 has quit [Ping timeout: 258 seconds]
[16:16:33] -!- shaun413 has quit [Ping timeout: 245 seconds]
[16:20:00] -!- chillly [chillly!~chris@static-87-102-95-199.karoo.kcom.com] has joined #leaflet
[16:21:37] -!- almccon has quit [Quit: Leaving.]
[16:24:45] -!- terabyte- has quit [Quit: terabyte-]
[16:24:57] -!- Groguard has quit [Ping timeout: 256 seconds]
[16:25:31] zz_Groguard is now known as Groguard
[16:25:41] -!- jfire has quit [Ping timeout: 276 seconds]
[16:25:55] -!- rob_h has quit [Ping timeout: 258 seconds]
[16:27:04] -!- amnesic has quit [Quit: amnesic]
[16:27:19] Cylly is now known as Loetmichel
[16:27:46] -!- witnit has quit [Remote host closed the connection]
[16:32:09] -!- dybskiy [dybskiy!~dybskiy@2601:7:2200:1bf:803c:f97e:8bb1:acbd] has joined #leaflet
[16:34:03] -!- gushhtab has quit [Ping timeout: 245 seconds]
[16:36:39] -!- dybskiy has quit [Ping timeout: 258 seconds]
[16:37:57] -!- pingufan has quit [Quit: Konversation terminated!]
[16:41:23] -!- Groguard has quit [Ping timeout: 256 seconds]
[16:42:23] -!- larryone has quit [Ping timeout: 245 seconds]
[16:43:00] -!- carper has quit [Quit: Leaving]
[16:44:16] -!- larryone [larryone!~larryone@178.167.254.190.threembb.ie] has joined #leaflet
[16:49:22] zz_Groguard is now known as Groguard
[16:52:27] -!- gushhtab2 has quit [Ping timeout: 252 seconds]
[16:53:51] -!- Groguard has quit [Ping timeout: 256 seconds]
[16:54:17] -!- FreezingCold has quit [Ping timeout: 252 seconds]
[16:56:05] zz_Groguard is now known as Groguard
[16:56:37] -!- dway has quit [Quit: NOOOOOOooooooooo……]
[16:58:15] -!- zzolo [zzolo!~zzolo@c-75-72-166-46.hsd1.mn.comcast.net] has joined #leaflet
[16:59:25] -!- balestrino has quit [Ping timeout: 250 seconds]
[17:00:48] -!- seb_kuzminsky has quit [Client Quit]
[17:01:30] -!- seb_kuzminsky has quit [Client Quit]
[17:01:34] -!- shaun413_ has quit [Ping timeout: 258 seconds]
[17:04:09] -!- md-2 has quit [Quit: Leaving...]
[17:11:05] -!- ries has quit [Quit: ries]
[17:14:11] -!- almccon [almccon!~Adium@162.6.85.240] has joined #leaflet
[17:15:33] -!- valeech has quit [Quit: valeech]
[17:18:32] -!- PetefromTn_Andro has quit [Quit: Bye]
[17:21:07] -!- arvidkahl has quit [Ping timeout: 258 seconds]
[17:22:23] -!- arvidkahl [arvidkahl!~arvidkahl@cable-86-56-26-185.cust.telecolumbus.net] has joined #leaflet
[17:23:32] -!- terabyte- has quit [Ping timeout: 276 seconds]
[17:26:17] -!- shaun413 has quit [Ping timeout: 250 seconds]
[17:27:09] -!- sudobangbang [sudobangbang!~chatzilla@75-151-97-182-Washington.hfc.comcastbusiness.net] has joined #leaflet
[17:27:39] -!- gushhtab has quit [Ping timeout: 252 seconds]
[17:29:03] -!- terabyte- has quit [Read error: Connection reset by peer]
[17:30:02] -!- GuShH_ has quit [Ping timeout: 276 seconds]
[17:32:52] -!- dybskiy [dybskiy!~dybskiy@c-50-139-51-132.hsd1.or.comcast.net] has joined #leaflet
[17:32:56] -!- larryone has quit [Quit: This computer has gone to sleep]
[17:37:23] -!- dybskiy has quit [Ping timeout: 245 seconds]
[17:41:03] -!- arvidkahl has quit [Ping timeout: 258 seconds]
[17:41:43] -!- arvidkahl [arvidkahl!~arvidkahl@cable-86-56-26-185.cust.telecolumbus.net] has joined #leaflet
[17:46:02] -!- shaun413_ has quit [Ping timeout: 258 seconds]
[17:47:41] -!- shaun413 has quit [Ping timeout: 240 seconds]
[17:48:10] -!- i_tarzan has quit [Read error: Connection reset by peer]
[17:50:27] -!- amiri_ has quit [Quit: leaving]
[17:50:42] -!- terabyte- has quit [Quit: terabyte-]
[17:55:07] -!- patrickarlt [patrickarlt!~patrickar@4.sub-70-210-139.myvzw.com] has joined #leaflet
[17:55:30] -!- patrickarlt has quit [Read error: Connection reset by peer]
[17:59:18] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[18:00:18] -!- FreezingCold has quit [Ping timeout: 245 seconds]
[18:00:26] -!- almccon has quit [Quit: Leaving.]
[18:00:31] -!- syyl_ws has quit [Quit: Verlassend]
[18:04:03] -!- AndChat-79476 has quit [Ping timeout: 258 seconds]
[18:04:29] -!- i_tarzan has quit [Ping timeout: 276 seconds]
[18:07:11] -!- Notflip [Notflip!4e170816@gateway/web/freenode/ip.78.23.8.22] has joined #leaflet
[18:07:16] <Notflip> Hi everyone.
[18:07:19] <Notflip> Anyone here? :)
[18:10:23] -!- Notflip has quit [Client Quit]
[18:10:41] -!- Notflip [Notflip!4e170816@gateway/web/freenode/ip.78.23.8.22] has joined #leaflet
[18:10:57] <Notflip> Does anyone know how to make sure there's only 1 popup? :)
[18:16:22] -!- IchGuckLive has quit [Quit: ChatZilla 0.9.87 [Firefox 20.0/20130329043827]]
[18:18:37] -!- skunkworks_ has quit [Ping timeout: 258 seconds]
[18:21:15] -!- mejackreed has quit [Quit: Leaving.]
[18:22:25] -!- larryone [larryone!~larryone@89.100.23.131] has joined #leaflet
[18:22:40] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[18:24:18] -!- larryone has quit [Remote host closed the connection]
[18:25:02] -!- mejackreed has quit [Read error: Connection reset by peer]
[18:25:18] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[18:27:51] -!- patrickarlt [patrickarlt!~patrickar@12.180.47.153] has joined #leaflet
[18:32:55] -!- dybskiy [dybskiy!~dybskiy@12.180.47.153] has joined #leaflet
[18:33:34] -!- i_tarzan has quit [Ping timeout: 258 seconds]
[18:38:27] -!- gushhtab has quit [Quit: Bye]
[18:38:59] shaun413__ is now known as shaun413_
[18:40:09] -!- dybskiy has quit [Remote host closed the connection]
[18:40:23] -!- i_tarzan has quit [Ping timeout: 250 seconds]
[18:40:53] -!- tjb11 has quit [Ping timeout: 276 seconds]
[18:45:18] -!- Notflip has quit [Ping timeout: 240 seconds]
[18:45:50] -!- amiri [amiri!~amiri@cpe-76-95-109-253.socal.res.rr.com] has joined #leaflet
[18:47:13] -!- i_tarzan has quit [Ping timeout: 252 seconds]
[19:08:25] -!- chillly has quit [Quit: Leaving]
[19:09:59] -!- i_tarzan has quit [Ping timeout: 258 seconds]
[19:11:27] -!- chillly [chillly!~chris@static-87-102-95-199.karoo.kcom.com] has joined #leaflet
[19:12:37] -!- bss36504 has quit [Quit: bss36504]
[19:16:53] -!- i_tarzan has quit [Ping timeout: 240 seconds]
[19:21:58] -!- dybskiy [dybskiy!~dybskiy@12.180.47.153] has joined #leaflet
[19:22:00] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has parted #leaflet
[19:24:40] -!- psha has quit [Quit: Lost terminal]
[19:28:05] -!- FreezingCold has quit [Ping timeout: 240 seconds]
[19:31:58] -!- patrickarlt has quit [Remote host closed the connection]
[19:34:52] -!- patrickarlt [patrickarlt!~patrickar@12.180.47.153] has joined #leaflet
[19:43:07] FreezingAlt is now known as FreezingCold
[19:45:47] -!- sumpfralle has quit [Quit: Leaving.]
[20:03:05] -!- skunkworks__ has quit [Read error: Connection reset by peer]
[20:05:57] -!- skunkworks has quit [Ping timeout: 258 seconds]
[20:07:29] -!- bilboquet has quit [Remote host closed the connection]
[20:08:39] -!- patrickarlt has quit [Remote host closed the connection]
[20:09:15] -!- patrickarlt [patrickarlt!~patrickar@12.180.47.153] has joined #leaflet
[20:10:32] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[20:14:29] -!- patrickarlt has quit [Ping timeout: 240 seconds]
[20:29:30] -!- patrickarlt [patrickarlt!~patrickar@12.180.47.153] has joined #leaflet
[20:32:49] -!- bss36504 has quit [Quit: bss36504]
[20:35:05] -!- zlog has quit [Remote host closed the connection]
[20:35:08] -!- Tom_itx has quit []
[20:38:18] -!- Tom_itx has quit [Client Quit]
[20:46:16] -!- valeech [valeech!~valeech@pool-71-171-123-210.clppva.fios.verizon.net] has joined #leaflet
[20:49:35] -!- mejackreed has quit [Quit: Leaving.]
[20:53:07] -!- mhaberler has quit [Quit: mhaberler]
[20:59:22] -!- Deejay has quit [Quit: bye]
[21:07:20] -!- tjb1 has quit [Quit: Leaving.]
[21:07:43] -!- FinboySlick has quit [Quit: Leaving.]
[21:10:55] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[21:14:33] -!- tjb1|2 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
[21:15:31] -!- mejackreed has quit [Ping timeout: 250 seconds]
[21:17:14] tjb11 is now known as tjb1
[21:17:55] -!- valeech has quit [Quit: valeech]
[21:18:03] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[21:20:04] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[21:20:48] -!- skorasaurus2 [skorasaurus2!~skors@162.6.85.219] has joined #leaflet
[21:23:23] -!- skorasaurus has quit [Ping timeout: 276 seconds]
[21:24:51] -!- mejackreed has quit [Ping timeout: 265 seconds]
[21:26:24] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[21:26:54] -!- tjb1 has quit [Quit: Leaving]
[21:30:10] -!- ve7it has quit [Remote host closed the connection]
[21:31:50] -!- mejackreed has quit [Ping timeout: 276 seconds]
[21:32:57] -!- skorasaurus2 has quit [Ping timeout: 252 seconds]
[21:35:56] -!- tjb1 has quit [Quit: Leaving]
[21:39:10] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[21:40:51] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[21:44:59] -!- GuShH_ has quit [Ping timeout: 250 seconds]
[21:47:41] -!- tjb1 has quit [Quit: Leaving]
[21:48:27] -!- tjb1 has quit [Client Quit]
[21:50:17] -!- tjb1 has quit [Client Quit]
[21:52:02] -!- tjb1 has quit [Client Quit]
[21:52:26] -!- chillly has quit [Quit: Leaving]
[21:52:59] -!- tinkerer has quit [Quit: Leaving.]
[21:57:19] -!- bss36504 has quit [Quit: bss36504]
[22:00:26] -!- FreezingCold has quit [Ping timeout: 276 seconds]
[22:03:04] NickParker|2 is now known as NickParker
[22:26:58] -!- zzolo has quit [Quit: zzolo]
[22:46:55] -!- mejackreed has quit [Quit: Leaving.]
[22:47:31] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[22:48:39] -!- Einar has quit [Quit: Leaving.]
[22:50:45] -!- terabyte- has quit [Quit: terabyte-]
[22:50:59] -!- jerryitt [jerryitt!uid17132@gateway/web/irccloud.com/x-ihuiseyqdznygble] has joined #leaflet
[22:59:59] -!- archivist_herron has quit [Ping timeout: 258 seconds]
[23:00:34] -!- Groguard has quit [Read error: Connection reset by peer]
[23:00:35] zz_Groguard is now known as Groguard
[23:04:28] -!- Jeff__ [Jeff__!ade31212@gateway/web/freenode/ip.173.227.18.18] has joined #leaflet
[23:06:14] -!- mejackreed has quit [Quit: Leaving.]
[23:09:05] -!- mejackreed [mejackreed!~mejackree@171.65.238.130] has joined #leaflet
[23:17:43] -!- archivist_herron has quit [Ping timeout: 250 seconds]
[23:20:30] -!- amnesic [amnesic!~loic@lbl44-2-88-185-233-179.fbx.proxad.net] has joined #leaflet
[23:25:58] -!- Groguard has quit [Ping timeout: 256 seconds]
[23:25:59] zz_Groguard is now known as Groguard
[23:26:06] -!- shaun413 has quit [Read error: Connection reset by peer]
[23:30:16] -!- AndChat-79476 has quit [Ping timeout: 258 seconds]
[23:31:26] -!- shaun413 has quit [Ping timeout: 276 seconds]
[23:31:31] -!- JesusAlos has quit [Quit: ChatZilla 0.9.90.1 [Firefox 20.0/20130329043827]]
[23:37:32] -!- Nick001-shop has quit [Quit: ChatZilla 0.9.90.1 [Firefox 28.0/20140314220517]]
[23:41:11] -!- pjm_ has quit [Ping timeout: 276 seconds]
[23:42:24] -!- PetefromTn_ has quit [Quit: Light travels faster then sound, which is why some people appear bright, until you hear them speak]
[23:44:18] -!- Jeff__ has quit [Ping timeout: 240 seconds]
[23:45:27] -!- rob_h has quit [Ping timeout: 250 seconds]
[23:47:16] -!- Jeff__ [Jeff__!ade31212@gateway/web/freenode/ip.173.227.18.18] has joined #leaflet
[23:47:26] -!- andypugh has quit [Quit: andypugh]
[23:51:41] -!- archivist_herron has quit [Ping timeout: 240 seconds]
[23:54:14] -!- terabyte- has quit [Client Quit]
[23:56:49] -!- patrickarlt has quit [Remote host closed the connection]