#leaflet | Logs for 2014-09-29

Back
[00:02:18] -!- mhaberler has quit [Quit: mhaberler]
[00:06:41] -!- asah has quit [Quit: asah]
[00:08:21] -!- skors [skors!~skors@cpe-107-10-221-190.neo.res.rr.com] has joined #leaflet
[00:37:49] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[00:47:22] -!- sumpfralle has quit [Ping timeout: 240 seconds]
[01:02:59] -!- erictheise has quit [Quit: erictheise]
[01:39:45] -!- skunksleep has quit [Read error: Connection reset by peer]
[02:02:14] -!- sumpfralle has quit [Quit: Leaving.]
[02:02:45] -!- PetefromTn_andro has quit [Quit: Bye]
[02:37:38] -!- FinboySlick has quit [Quit: Leaving.]
[02:44:56] -!- skors has quit [Ping timeout: 260 seconds]
[02:45:57] -!- AR_ has quit [Ping timeout: 260 seconds]
[03:00:37] -!- sirdancealot has quit [Ping timeout: 245 seconds]
[03:06:22] -!- tumdedum has quit [Ping timeout: 240 seconds]
[03:08:54] -!- Felix29 has quit []
[03:22:17] -!- tronwizard has quit [Ping timeout: 245 seconds]
[03:25:54] -!- ve7it has quit [Read error: Connection reset by peer]
[04:20:26] -!- ve7it has quit [Remote host closed the connection]
[04:27:17] -!- karavanjo_ has quit [Ping timeout: 245 seconds]
[04:30:57] -!- JLuc69_ has quit [Ping timeout: 260 seconds]
[04:42:48] -!- FreezingCold has quit [Ping timeout: 246 seconds]
[04:43:35] <terinjokes> why are LayerGroup events hard coded?
[04:43:43] <terinjokes> and how can I override them?
[04:44:54] -!- nofxx_ has quit [Ping timeout: 246 seconds]
[04:49:08] -!- shurshur has quit [Read error: Connection reset by peer]
[04:56:17] -!- Valduare [Valduare!~Valduare@108-198-116-80.lightspeed.mdsnwi.sbcglobal.net] has joined #leaflet
[04:56:24] <Valduare> hi guys
[04:56:39] <Valduare> if I wanted to display a map with a parimeter drawn on it. how would I go about doing that
[04:56:57] <Valduare> maybe color in the area too
[04:59:35] <Virtakuono> if your perimeter is a polygon, the quick start guide is probably the place to start
[04:59:39] <Virtakuono> http://leafletjs.com/examples/quick-start.html
[05:00:34] <Valduare> say I wanted to draw a line 7 road miles out from a pin point on a map. you can imagine that’d be a pretty fragmented line and not a perfect circle drawn
[05:00:42] <Valduare> is that a simple task?
[05:03:10] -!- Fox_Muldr has quit [Ping timeout: 250 seconds]
[05:03:21] <Virtakuono> I'd imagine its just as simple as drawing a straight line between two points, just more nodes
[05:06:42] -!- shurshur [shurshur!~chatzilla@79.165.217.36] has joined #leaflet
[05:07:18] <Virtakuono> if you are doing a line rather than enclosed area, polyline might be the function you are looking for
[05:07:44] <Valduare> trying to visualize a delivery range for pizza restaurant
[05:07:55] <Valduare> sharpie on a printout does not do anyone any justice lol
[05:08:19] -!- timm_ has quit [Quit: Page closed]
[05:08:28] <Virtakuono> in that case, it sounds like you are doing a polygon
[05:10:31] <Virtakuono> and in that case, I think the effort goes into figuring out the coordinates of your nodes, after that drawing a polygon with 1000 nodes is not much different from drawing a triangle
[05:11:14] <Valduare> is there ways to do this based on addresses?
[05:12:29] <Virtakuono> not sure, at the very least it depends on if you have sufficient address data in your area
[05:13:16] <Valduare> was just looking at this http://www.d3noob.org/2014/01/using-leafletdraw-plugin-for-leafletjs.html
[05:13:28] -!- skunkworks_ has quit [Ping timeout: 272 seconds]
[05:15:22] <Virtakuono> afaik that just produces you a polygon with coordinate points as nodes
[05:15:53] -!- The_Ball has quit [Quit: Leaving]
[05:16:56] <Valduare> could be used to manually draw the delivery range though?
[05:17:28] <Virtakuono> I don't see why not
[05:19:42] <Virtakuono> of course, if your delivery area is bounded by existing roads etc. you can mine your relevant coordinates from the openstreetmap
[05:19:55] <Virtakuono> if that suits your liking better than drawing
[05:21:24] <Valduare> what about handling things like delivering to one side of the road but not the other
[05:21:33] <Valduare> hate it when delivery software stops you from dispatching that heh
[05:22:00] <Virtakuono> so what exactly are you doing here
[05:22:12] <Virtakuono> are you just drawing a map for your customers to look at
[05:22:24] <Valduare> for staff
[05:22:32] <Virtakuono> or some input for automated delivery system
[05:22:51] -!- jerryitt has quit [Quit: Connection closed for inactivity]
[05:23:46] <Valduare> right now just visualization
[05:24:17] <Virtakuono> then I would not worry too much about which side of the rode to deliver to
[05:24:21] <Valduare> what i’d like to have though is a little program that I can generate these for various areas based on distance from center
[05:24:33] <Virtakuono> unless your staff are really mindless drones :D
[05:27:07] <Virtakuono> if you want to do an automated solution
[05:27:22] -!- zumba_addict has quit [Ping timeout: 240 seconds]
[05:27:50] <Virtakuono> I recommend you ditch the drawing and just mine your nodes from the openstreetmap data with some kind of script
[05:28:50] <Virtakuono> should not be too hard to find all the waypoints that are associated to streets and at an appropriate distance from a given reference point
[05:37:09] <terinjokes> anyone have any recommendations on adding touchstart and touchend events to a FeatureLayer?
[05:37:30] <Valduare> sounds like a lot of programing :P
[05:37:47] <terinjokes> sounds like it should be included right next to all the other events in EVENTS
[05:38:11] <Virtakuono> well if you want to make an automated generation of delivery ranges to arbitrary location
[05:38:30] <Virtakuono> it somehow seems reasonable to me that you have to write a bit of code
[05:44:21] -!- Tecan has quit [Quit: Live Long And Phosphor!]
[05:44:40] -!- tjtr33 has quit [Quit: Leaving]
[05:45:56] <Valduare> ya but no one’s thought of using leaflet yet for delivery ranges? the whole world operates on delivery lol
[05:54:43] <Virtakuono> leaflet is essentially (IMHO) a tool for presenting cartographical data
[05:55:06] <Virtakuono> once you know where you deliver, leaflet will do the job of showing that area
[05:55:49] <Virtakuono> but when it comes to figuring out where you should deliver pizzas and where you shouldn't, I doubt that leaflet is the tool to use
[05:55:59] -!- cmorley has quit [Ping timeout: 272 seconds]
[05:56:57] -!- bdon [bdon!sid38090@gateway/web/irccloud.com/x-sjkeagalhhhmadac] has joined #leaflet
[06:03:45] -!- __unik has quit [Changing host]
[06:05:03] -!- fenugrec has quit [Quit: Leaving]
[06:06:26] -!- kwallace has quit [Ping timeout: 250 seconds]
[06:11:35] -!- Valduare has quit [Quit: Valduare]
[06:13:37] -!- tronwizard has quit [Ping timeout: 245 seconds]
[06:19:13] __unik is now known as unik_
[06:23:51] -!- Fox_Muldr has quit [Ping timeout: 272 seconds]
[06:28:31] -!- unik_ has quit [Remote host closed the connection]
[06:30:58] -!- dan2k3k4 [dan2k3k4!~dan2k3k4@unaffiliated/dan2k3k4] has joined #leaflet
[06:37:59] -!- dan2k3k4 has quit [Ping timeout: 244 seconds]
[06:39:02] -!- dan2k3k4 [dan2k3k4!~dan2k3k4@unaffiliated/dan2k3k4] has joined #leaflet
[06:41:35] -!- asah has quit [Quit: asah]
[06:42:26] -!- tronwzrd has quit [Ping timeout: 258 seconds]
[07:02:49] -!- quiqua [quiqua!~quiqua@p5DDC60F3.dip0.t-ipconnect.de] has joined #leaflet
[07:03:26] -!- md-2 [md-2!~md-2@host86-181-179-17.range86-181.btcentralplus.com] has joined #leaflet
[07:08:59] -!- JT-Shop_ has quit [Read error: Connection reset by peer]
[07:08:59] -!- jthornton has quit [Read error: Connection reset by peer]
[07:44:24] -!- mhaberler has quit [Quit: mhaberler]
[07:54:46] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[08:00:36] Cylly is now known as Loetmichel
[08:01:20] -!- tronwizard has quit [Ping timeout: 260 seconds]
[08:11:33] -!- syyl_ws has quit [Remote host closed the connection]
[08:23:43] -!- The_Ball has quit [Read error: Connection timed out]
[08:25:37] -!- nofxx_ has quit [Ping timeout: 245 seconds]
[09:05:17] -!- tronwizard has quit [Ping timeout: 245 seconds]
[09:11:14] -!- b_b [b_b!ejabberd@81.18.178.14] has joined #leaflet
[09:11:41] -!- b_b has quit [Changing host]
[09:11:41] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has joined #leaflet
[09:23:02] -!- ibaca has quit [Quit: Bye.]
[09:23:48] -!- ibaca [ibaca!~ibaca@80.Red-79-144-97.dynamicIP.rima-tde.net] has joined #leaflet
[09:41:17] -!- syyl_ws has quit [Quit: Verlassend]
[09:55:52] -!- mhaberler has quit [Quit: mhaberler]
[10:17:41] -!- JLuc69__ has quit [Ping timeout: 260 seconds]
[10:24:03] -!- HeXiLeD has quit [Ping timeout: 246 seconds]
[10:25:29] -!- HeXiLeD [HeXiLeD!~L3D@unaffiliated/hexiled] has joined #leaflet
[10:27:44] -!- archivist_herron has quit [Ping timeout: 250 seconds]
[10:32:45] -!- arek_at_work [arek_at_work!~polcode@192.166.203.5] has joined #leaflet
[10:33:35] jthornton_ is now known as jthornton
[10:36:50] -!- amatecha [amatecha!sid10006@gateway/web/irccloud.com/x-aggopgaculhsbqys] has joined #leaflet
[10:37:02] -!- skunkworks_ has quit [Ping timeout: 258 seconds]
[10:40:09] -!- skunksleep has quit [Ping timeout: 246 seconds]
[11:11:17] -!- nofxx_ has quit [Changing host]
[11:12:37] unik_ is now known as unik__
[11:13:36] -!- __unik has quit [Quit: Leaving]
[11:15:07] -!- __unik has quit [Changing host]
[11:29:39] -!- mhaberler has quit [Quit: mhaberler]
[11:30:37] -!- sumpfralle has quit [Ping timeout: 272 seconds]
[11:33:37] -!- MacGalempsy has quit [Remote host closed the connection]
[11:35:52] -!- hannes3 [hannes3!~hannes3@port-92-196-42-87.dynamic.qsc.de] has joined #leaflet
[11:38:27] <hannes3> what's the best way to dynamically update the "style" of markers? i am loading positions and attributes via (geo)json and want to let the user choose different attributes to be visualised by their style (different icon or refreshing their DIV with new html)
[11:39:06] -!- skors [skors!~skors@cpe-107-10-221-190.neo.res.rr.com] has joined #leaflet
[11:41:35] -!- arek_at_work has quit [Quit: Konversation terminated!]
[11:41:49] -!- skunkworks_ has quit [Ping timeout: 258 seconds]
[11:46:16] -!- dan2k3k4 has quit [Quit: Leaving]
[11:50:01] -!- sumpfralle has quit [Ping timeout: 272 seconds]
[12:02:30] -!- arek_at_work [arek_at_work!~polcode@192.166.203.5] has joined #leaflet
[12:03:48] -!- The_Ball has quit [Quit: Leaving]
[12:19:53] -!- Valen has quit [Read error: Connection reset by peer]
[12:25:43] -!- moorbo has quit [Ping timeout: 272 seconds]
[12:34:17] -!- syyl has quit [Ping timeout: 272 seconds]
[12:36:12] -!- Valen has quit [Quit: Leaving.]
[12:43:21] -!- The__Ball has quit [Ping timeout: 246 seconds]
[12:45:54] -!- jduhls [jduhls!~jduhls@67.58.77.166] has joined #leaflet
[12:49:18] -!- The__Ball has quit [Ping timeout: 246 seconds]
[13:04:48] -!- skors has quit [Quit: WeeChat 1.0]
[13:07:14] -!- The__Ball has quit [Read error: Connection timed out]
[13:11:19] -!- tocka [tocka!~tocka@80-193-72-2.paternoster.mezzonet.net] has joined #leaflet
[13:17:27] -!- zeitue has quit [Remote host closed the connection]
[13:20:13] -!- arek_at_work has quit [Remote host closed the connection]
[13:23:13] -!- arek_at_work [arek_at_work!~polcode@192.166.203.5] has joined #leaflet
[13:24:17] -!- rythmnbls has quit [Quit: Leaving]
[13:25:52] -!- tronwzrd has quit [Ping timeout: 240 seconds]
[13:32:42] -!- Tecan has quit [Changing host]
[13:37:00] -!- SkramX [SkramX!sid32410@gateway/web/irccloud.com/x-xukqdxcguxpoucrj] has joined #leaflet
[13:37:28] -!- Katharsis [Katharsis!~Katharsis@unaffiliated/katharsis] has joined #leaflet
[13:37:30] <Katharsis> hi
[13:39:01] <Katharsis> is it possible to put the HTML form with inputs, checkbox and radiobutton inside of the leaflet popup (marker)?
[13:39:34] <Katharsis> i need to generate diffrent forms for markers on my map
[13:42:48] -!- acdha [acdha!~acdha@shell.improbable.org] has joined #leaflet
[14:06:08] -!- kanzure has quit [Ping timeout: 250 seconds]
[14:14:19] -!- chillly [chillly!~chris@static-87-102-95-199.karoo.kcom.com] has joined #leaflet
[14:15:02] -!- jerryitt [jerryitt!uid17132@gateway/web/irccloud.com/x-dpicytsbxmtwyned] has joined #leaflet
[14:16:56] <Katharsis> ok I see, it's so simple
[14:21:02] -!- ashcan_ has quit [Remote host closed the connection]
[14:22:46] -!- amiri_ [amiri_!~amiri@cpe-76-95-109-253.socal.res.rr.com] has joined #leaflet
[14:25:53] -!- amiri has quit [Ping timeout: 258 seconds]
[14:26:45] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has parted #leaflet
[14:26:55] -!- b_b [b_b!ejabberd@81.18.178.14] has joined #leaflet
[14:27:20] -!- b_b has quit [Changing host]
[14:27:20] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has joined #leaflet
[14:34:42] -!- H3XIL3D [H3XIL3D!~L3D@69.196.165.41] has joined #leaflet
[14:34:44] -!- HeXiLeD has quit [Read error: Connection reset by peer]
[14:47:04] ianp_ is now known as ianp
[14:58:46] -!- __unik has quit [Remote host closed the connection]
[15:25:55] cpresser_ is now known as cpresser
[15:39:10] -!- tom_o_t_ has quit [Quit: Leaving]
[15:49:00] -!- acdha has quit [Quit: Textual IRC Client: www.textualapp.com]
[15:57:56] -!- quiqua has quit [Quit: quiqua]
[16:04:13] -!- tronwizard has quit [Ping timeout: 272 seconds]
[16:07:23] -!- kb8wmc has quit [Ping timeout: 240 seconds]
[16:08:13] -!- __unik has quit [Changing host]
[16:20:37] -!- patrickarlt [patrickarlt!~patrickar@cpe-172-251-168-67.socal.res.rr.com] has joined #leaflet
[16:21:03] -!- SquirrelCZECH has quit [Remote host closed the connection]
[16:24:25] -!- tom_o_t [tom_o_t!tom_o_t@drupal.org/user/125573/view] has joined #leaflet
[16:27:32] -!- __unik has quit [Read error: Connection reset by peer]
[16:31:52] -!- phantoxe has quit [Remote host closed the connection]
[16:44:30] -!- bedah has quit [Ping timeout: 246 seconds]
[16:50:47] -!- rob_h has quit [Ping timeout: 272 seconds]
[16:52:03] -!- fenugrec has quit [Ping timeout: 272 seconds]
[16:55:24] -!- md-2 has quit [Quit: Leaving...]
[17:02:19] -!- b_b [b_b!ejabberd@unaffiliated/b-b/x-7659960] has parted #leaflet
[17:10:12] -!- FreezingCold has quit [Ping timeout: 245 seconds]
[17:28:39] -!- acdha [acdha!~acdha@shell.improbable.org] has joined #leaflet
[17:29:21] -!- skorasaurus [skorasaurus!~skors@192.171.20.175] has joined #leaflet
[17:29:25] -!- Lathe_newbie has quit [Ping timeout: 272 seconds]
[17:39:03] JT-Shop__ is now known as JT-Shop
[17:42:14] -!- jduhls has quit [Quit: Leaving]
[17:45:43] -!- motioncontrol has quit [Quit: Sto andando via]
[17:53:55] amnesic_away is now known as amnesic
[17:55:04] amnesic is now known as amnesic_away
[17:59:06] -!- raymondhim has quit [Read error: Connection reset by peer]
[18:03:02] -!- morgajel [morgajel!~morgajel@li458-218.members.linode.com] has joined #leaflet
[18:03:50] <morgajel> hey guys, love your library.
[18:04:14] <morgajel> are you aware of anyone using it to procedurally generate cities?
[18:05:33] -!- Lathe_newbie has quit [Remote host closed the connection]
[18:09:54] -!- jduhls [jduhls!~jduhls@75.76.125.132] has joined #leaflet
[18:15:19] -!- syyl has quit [Ping timeout: 272 seconds]
[18:36:37] -!- moorbo has quit [Ping timeout: 272 seconds]
[18:36:58] -!- asah has quit [Quit: asah]
[18:39:35] -!- dgarr has quit [Client Quit]
[18:44:50] <Katharsis> guys, which plugin will be the best for searching streets and names?
[18:44:58] <Katharsis> i found it https://github.com/k4r573n/leaflet-control-osm-geocoder
[18:51:55] -!- arek_at_work has quit [Quit: Konversation terminated!]
[19:00:31] <Katharsis> http://esri.github.io/esri-leaflet/examples/geocoding-control.html seems working
[19:01:04] -!- patrickarlt has quit [Remote host closed the connection]
[19:03:22] -!- patrickarlt [patrickarlt!~patrickar@2606:6000:fe01:8100:2073:3017:f287:f58e] has joined #leaflet
[19:05:46] -!- sumpfralle has quit [Quit: Leaving.]
[19:05:53] -!- patrickarlt has quit [Remote host closed the connection]
[19:10:57] -!- patrickarlt [patrickarlt!~patrickar@cpe-172-251-168-67.socal.res.rr.com] has joined #leaflet
[19:11:32] -!- nofxx_ has quit [Ping timeout: 245 seconds]
[19:13:37] -!- skunkworks has quit [Read error: Connection reset by peer]
[19:13:59] <ybon> Katharsis: you can also have a look at https://github.com/komoot/leaflet.photon
[19:14:47] <Katharsis> ok
[19:16:29] -!- mozmck has quit [Quit: Leaving.]
[19:18:31] -!- mozmck has quit [Client Quit]
[19:23:07] -!- motioncontrol has quit [Ping timeout: 245 seconds]
[19:31:52] -!- asdfasd has quit [Ping timeout: 240 seconds]
[19:34:03] -!- motioncontrol has quit [Ping timeout: 255 seconds]
[19:49:48] -!- ciampix has quit [Ping timeout: 258 seconds]
[19:50:05] -!- moorbo has quit [*.net *.split]
[19:53:12] -!- dimas has quit [Ping timeout: 245 seconds]
[20:13:58] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]
[20:24:51] -!- Connor has quit [Read error: Connection reset by peer]
[20:25:04] -!- lappi has quit [Client Quit]
[20:26:16] -!- mle [mle!~mle@bon31-1-81-56-86-173.fbx.proxad.net] has joined #leaflet
[20:26:35] -!- almccon has quit [Quit: Textual IRC Client: www.textualapp.com]
[20:28:28] -!- sirdancealot has quit [Ping timeout: 260 seconds]
[20:29:53] -!- rythmnbls has quit [Quit: Leaving]
[20:34:22] -!- afiber__ has quit [Quit: Konversation terminated!]
[20:41:20] -!- Loetmichel has quit [Ping timeout: 272 seconds]
[20:49:22] -!- tronwizard has quit [Ping timeout: 240 seconds]
[20:49:22] -!- f1oat has quit [Ping timeout: 240 seconds]
[20:51:31] -!- skorasaurus has quit [Ping timeout: 272 seconds]
[20:52:54] -!- patrickarlt has quit [Remote host closed the connection]
[20:54:51] -!- Deejay has quit [Quit: bye]
[20:56:24] -!- jduhls has quit [Quit: Leaving]
[20:57:57] -!- FinboySlick has quit [Quit: Leaving.]
[21:00:52] -!- t12 has quit [Ping timeout: 240 seconds]
[21:01:52] -!- ciampix has quit [Ping timeout: 240 seconds]
[21:02:27] -!- Cylly has quit [Ping timeout: 246 seconds]
[21:04:09] -!- hannes2 [hannes2!~hannes3@port-92-196-46-86.dynamic.qsc.de] has joined #leaflet
[21:07:59] -!- hannes3 has quit [Ping timeout: 272 seconds]
[21:08:22] -!- motioncontrol has quit [Quit: Sto andando via]
[21:08:52] -!- skorasaurus [skorasaurus!~skors@192.171.20.175] has joined #leaflet
[21:11:55] -!- skorasaurus has quit [Read error: Connection reset by peer]
[21:12:34] -!- skorasaurus [skorasaurus!~skors@192.171.20.175] has joined #leaflet
[21:15:41] -!- sylphiae has quit [Ping timeout: 260 seconds]
[21:15:49] -!- acdha has quit [Quit: Textual IRC Client: www.textualapp.com]
[21:18:22] -!- mozmck has quit [Quit: Leaving.]
[21:36:02] -!- erictheise [erictheise!~erictheis@75.101.62.3] has joined #leaflet
[21:40:56] -!- [[ahop]] [[[ahop]]!~ahop]]@90.253.75.86.rev.sfr.net] has joined #leaflet
[21:42:29] -!- [[ahop]] has quit [Read error: Connection reset by peer]
[21:43:05] -!- moorbo has quit [Read error: Connection reset by peer]
[21:44:49] -!- moorbo has quit [Read error: Connection reset by peer]
[21:48:06] -!- nofxx_ has quit [Changing host]
[21:48:53] -!- skorasaurus has quit [Quit: WeeChat 1.0]
[21:49:08] -!- ahop [ahop!ahop@90.253.75.86.rev.sfr.net] has joined #leaflet
[21:49:12] <ahop> Hi there !
[21:50:14] <ahop> Do some of the leaflet developers come here sometimes ? danzel or ChALkeR ?
[21:56:28] -!- patrickarlt [patrickarlt!~patrickar@2606:6000:fe01:8100:21f2:2d32:ffb3:a4c6] has joined #leaflet
[21:58:01] -!- mhaberler has quit [Quit: mhaberler]
[22:02:42] -!- chillly has quit [Quit: Ex-Chat]
[22:05:10] -!- moorbo has quit [Read error: Connection reset by peer]
[22:06:07] -!- logger[mah] has quit [Ping timeout: 245 seconds]
[22:10:03] -!- moorbo has quit [Ping timeout: 244 seconds]
[22:11:22] -!- i_tarzan has quit [Ping timeout: 240 seconds]
[22:11:52] -!- patrickarlt has quit [Remote host closed the connection]
[22:18:41] -!- mle has quit [Ping timeout: 260 seconds]
[22:20:29] -!- patrickarlt [patrickarlt!~patrickar@2606:6000:fe01:8100:513b:eb17:4bd8:c677] has joined #leaflet
[22:24:36] -!- mblaszkiewicz has quit [Quit: Page closed]
[22:24:55] -!- markblaszkiewicz has quit [Quit: Page closed]
[22:27:50] -!- patrickarlt has quit [Remote host closed the connection]
[22:28:24] -!- patrickarlt [patrickarlt!~patrickar@2606:6000:fe01:8100:513b:eb17:4bd8:c677] has joined #leaflet
[22:33:04] -!- patrickarlt has quit [Ping timeout: 260 seconds]
[22:42:34] -!- bedah2 has quit [Quit: gn8]
[22:45:16] -!- ahop [ahop!ahop@90.253.75.86.rev.sfr.net] has parted #leaflet
[22:49:35] -!- tinkerer has quit [Quit: Leaving.]
[22:52:47] -!- ReadError has quit [Ping timeout: 245 seconds]
[22:52:56] -!- l0ggy has quit [Ping timeout: 244 seconds]
[23:08:04] -!- Tecan has quit [Ping timeout: 260 seconds]
[23:08:58] -!- micges-dev has quit [Quit: Wychodzi]
[23:15:32] -!- patrickarlt [patrickarlt!~patrickar@cpe-172-251-168-67.socal.res.rr.com] has joined #leaflet
[23:20:17] -!- patrickarlt has quit [Ping timeout: 260 seconds]
[23:20:43] -!- gonzo_nb has quit [Remote host closed the connection]
[23:23:07] -!- asah_ has quit [Ping timeout: 272 seconds]
[23:23:15] -!- kfoltman has quit [Quit: Ex-Chat]
[23:25:22] -!- patrickarlt [patrickarlt!~patrickar@2606:6000:fe01:8100:8c55:cdd6:6e1d:27b6] has joined #leaflet
[23:27:13] -!- patricka_ [patricka_!~patrickar@2606:6000:fe01:8100:88c9:5ebb:8353:8bfe] has joined #leaflet
[23:30:05] -!- patrickarlt has quit [Ping timeout: 272 seconds]
[23:31:52] -!- patricka_ has quit [Ping timeout: 260 seconds]
[23:46:22] -!- zeitue has quit [Ping timeout: 240 seconds]
[23:58:52] -!- PetefromTn_ has quit [Quit: I'm Outta here!!]