#leaflet | Logs for 2012-10-17

Back
[00:02:07] -!- Nick001-Shop has quit [Remote host closed the connection]
[00:02:08] -!- logger[mah] has quit [Remote host closed the connection]
[00:03:59] -!- tjb1 has quit [Quit: tjb1]
[00:07:16] -!- morfic__ has quit [Ping timeout: 246 seconds]
[00:12:53] -!- mhaberler has quit [Quit: mhaberler]
[00:22:57] -!- asdfasd has quit [Ping timeout: 245 seconds]
[00:26:33] -!- factor has quit [Read error: Connection reset by peer]
[00:51:44] -!- andypugh has quit [Quit: andypugh]
[00:56:12] -!- Gast324 has quit [Quit: Bye Bye]
[01:00:24] -!- Gast647 has quit [Client Quit]
[01:00:47] -!- JesusAlos has quit [Client Quit]
[01:10:58] -!- sumpfralle has quit [Read error: Operation timed out]
[01:12:15] -!- codebeaker [codebeaker!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[01:15:07] -!- log_ybon has quit [Ping timeout: 240 seconds]
[01:16:17] -!- leehambley has quit [Ping timeout: 265 seconds]
[01:20:24] -!- Aero-Tec has quit [*.net *.split]
[01:20:25] -!- ReadError has quit [*.net *.split]
[01:20:26] -!- hardik has quit [*.net *.split]
[01:20:49] Aero-Tec_ is now known as Aero-Tec
[01:21:38] -!- log_ybon_ [log_ybon_!~ybon@the-doors.enix.org] has joined #leaflet
[01:24:34] -!- phantoxeD has quit [Ping timeout: 244 seconds]
[02:30:59] -!- Brandonian has quit [Quit: Brandonian]
[02:56:24] -!- mutilator has quit [Read error: Connection reset by peer]
[03:00:02] -!- Keknom has quit [Quit: Leaving.]
[03:16:09] -!- jpk has quit [Ping timeout: 265 seconds]
[03:34:48] -!- ve7it has quit [Remote host closed the connection]
[03:45:01] -!- FinboySlick has quit [Quit: Leaving.]
[04:29:54] -!- pjm has quit [Ping timeout: 240 seconds]
[04:57:05] -!- psha[work] [psha[work]!~psha@195.135.238.205] has joined #leaflet
[05:03:35] -!- Fox_Muldr has quit [Ping timeout: 260 seconds]
[05:05:47] -!- Mac_Weber has quit [Ping timeout: 240 seconds]
[05:25:19] -!- mk0 has quit [Quit: Leaving]
[06:07:49] -!- theos has quit [Ping timeout: 248 seconds]
[06:19:18] -!- the_wench has quit [Ping timeout: 245 seconds]
[06:19:19] -!- archivist has quit [Ping timeout: 246 seconds]
[06:38:39] -!- LeelooMinai has quit [Ping timeout: 260 seconds]
[06:43:09] -!- Cylly has quit []
[07:21:12] -!- herron has quit [Ping timeout: 260 seconds]
[07:31:37] -!- arvind_khadri [arvind_khadri!~arvind@unaffiliated/arvind-khadri/x-2237230] has joined #leaflet
[07:31:51] <arvind_khadri> Hi, I am not able to make multiple popups. Here is the code http://jsfiddle.net/KC2aE/, and here is how it comes up http://arvindkhadri.github.com/community-radio/. What am I doing wrong?
[07:37:36] -!- ybon [ybon!~ybon@ALagny-154-1-13-76.w83-112.abo.wanadoo.fr] has joined #leaflet
[08:03:44] -!- gurumelo [gurumelo!~mari@unaffiliated/gurumelo] has joined #leaflet
[08:14:52] -!- emel has quit [Excess Flood]
[08:15:12] -!- emel [emel!~emel@sd-22438.dedibox.fr] has joined #leaflet
[08:16:04] -!- racycle has quit [Quit: racycle]
[08:16:15] <gurumelo> have anybody some example about distanTo()? how can i use with a pair of lat and long?
[08:17:13] <gurumelo> distanceTo() sorry
[08:23:13] <psha[work]> ll.distanceTo([1, 2])
[08:24:24] <arvind_khadri> Is there a way I can attach title to path types?
[08:26:01] -!- JT-Shop has quit [Ping timeout: 246 seconds]
[08:26:10] -!- jthornton has quit [Ping timeout: 246 seconds]
[08:33:27] -!- IchGuckLive has quit [Quit: ChatZilla 0.9.87 [Firefox 14.0.1/20120713225625]]
[08:34:22] -!- maximilian_h has quit [Quit: Leaving.]
[08:35:16] <psha[work]> arvind_khadri: 'alt' like title that shows tooltip?
[08:39:10] -!- maximilian_h has quit [Client Quit]
[08:47:10] <gurumelo> thanls psha[work]
[08:47:19] <gurumelo> thanks, sorry
[08:53:35] <arvind_khadri> psha[work], or something which is permanent.
[08:55:58] <arvind_khadri> But yes I am looking for something like 'title' for Marker.
[09:02:02] -!- mhaberler has quit [Quit: mhaberler]
[09:12:29] <psha[work]> arvind_khadri: unfortunately except adding popup there is nothing that looks like title
[09:14:26] <arvind_khadri> found out that :) But I am facing another problem now. I am creating my markers by running over a loop. I am also attaching popups to those markers on the "mouseenter" event. The popup shows, but only for the last element that was added.
[09:15:52] <psha[work]> looks like javascript variable scoping issue
[09:16:30] <arvind_khadri> psha[work], yes. So how do I overcome that?
[09:16:41] -!- mk0 has quit [Quit: Looking for access to www.icdd.com bases.]
[09:17:33] <psha[work]> for (...) { var marker=L.marker(); marker.on('mouseenter', function() { marker.showPopup(); }); }
[09:17:40] <psha[work]> do you have something like this?
[09:18:36] <arvind_khadri> yes
[09:19:06] <psha[work]> .on has third argument - context
[09:19:07] <psha[work]> use it
[09:19:38] <arvind_khadri> aah I see, I was using addEventListener
[09:19:47] <arvind_khadri> thanks will look up "on" :)
[09:20:31] <psha[work]> addEventListener behaves just like on and they both share same problems
[09:21:24] <gurumelo> uno = new L.LatLng(antlat , antlon); dos = new L.LatLng(position.coords.latitude , position.coords.longitude); haversine = L.distanceTo([uno, dos])
[09:21:55] <gurumelo> Uncaught TypeError: Object #<Object> has no method 'distanceTo' at file:///android_asset/www/index.html:71
[09:24:23] -!- b_b [b_b!ejabberd@81.18.178.14] has joined #leaflet
[09:27:34] <arvind_khadri> psha[work], that fixed it, thanks :)
[09:35:16] -!- codebeaker has quit [Quit: codebeaker]
[10:05:49] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[10:10:27] -!- leehambley has quit [Ping timeout: 256 seconds]
[10:27:55] -!- abra has quit [Ping timeout: 260 seconds]
[10:28:37] -!- Tom_itx has quit [Ping timeout: 244 seconds]
[10:28:55] -!- abra [abra!~abra@37.79.46.210] has joined #leaflet
[10:29:07] -!- automata_ has quit [Ping timeout: 240 seconds]
[10:29:27] -!- logger[mah] has quit [Ping timeout: 240 seconds]
[10:32:48] <psha[work]> gurumelo: uno.distanceTo(dos)
[10:40:52] -!- sumpfralle has quit [Ping timeout: 268 seconds]
[10:45:10] -!- sumpfralle1 has quit [Ping timeout: 252 seconds]
[10:53:37] -!- Mac_Weber [Mac_Weber!~Mac_Weber@177.97.206.166] has joined #leaflet
[10:55:02] -!- Mac_Weber has quit [Remote host closed the connection]
[10:56:34] -!- chillly [chillly!~chris@adsl-87-102-72-211.karoo.KCOM.COM] has joined #leaflet
[11:04:18] -!- herron has quit [Ping timeout: 268 seconds]
[11:06:14] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[11:09:07] -!- arvind_khadri has quit [Ping timeout: 240 seconds]
[11:10:38] -!- leehambley has quit [Ping timeout: 244 seconds]
[11:12:04] <gurumelo> thank you very much psha[work]
[11:18:47] -!- sumpfralle has quit [Ping timeout: 252 seconds]
[11:47:37] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[11:57:42] -!- dhoovie has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
[12:39:09] -!- Brandonian [Brandonian!~bmorrison@c-71-229-81-179.hsd1.in.comcast.net] has joined #leaflet
[12:39:17] -!- Brandonian has quit [Client Quit]
[12:50:13] -!- chillly has quit [Quit: Leaving]
[12:54:55] -!- Brandonian [Brandonian!~bmorrison@c-71-229-81-179.hsd1.in.comcast.net] has joined #leaflet
[13:01:19] -!- factor has quit [Quit: Leaving]
[13:07:41] -!- odogono has quit [Ping timeout: 252 seconds]
[13:35:01] -!- automata has quit [Ping timeout: 256 seconds]
[13:38:40] -!- psha[work] has quit [Quit: Lost terminal]
[14:07:14] -!- tigerfinch [tigerfinch!9c3da001@gateway/web/freenode/ip.156.61.160.1] has joined #leaflet
[14:10:07] -!- tigerfinch has quit [Client Quit]
[14:16:02] -!- Valen has quit [Quit: Leaving.]
[14:21:25] -!- jpk [jpk!~jpk@unaffiliated/vorondil] has joined #leaflet
[14:25:01] -!- the_wench has quit [Ping timeout: 256 seconds]
[14:25:55] -!- archivist has quit [Ping timeout: 260 seconds]
[14:49:01] -!- phantoneD has quit [Ping timeout: 244 seconds]
[15:29:37] -!- automata_ has quit [Ping timeout: 256 seconds]
[15:34:13] -!- racycle [racycle!~racycle@75-25-129-128.lightspeed.sjcpca.sbcglobal.net] has joined #leaflet
[15:36:32] -!- zzolo [zzolo!~zzolo@mail.minnpost.com] has joined #leaflet
[15:40:37] -!- leehambley has quit [Ping timeout: 272 seconds]
[15:43:15] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[15:44:38] -!- tjb1 has quit [Quit: tjb1]
[16:00:42] -!- i_tarzan has quit [Ping timeout: 255 seconds]
[16:01:25] -!- amaldo has quit [Ping timeout: 248 seconds]
[16:18:50] -!- pingufan has quit [Quit: Konversation terminated!]
[16:24:57] -!- sumpfralle has quit [Ping timeout: 272 seconds]
[16:25:13] -!- mozmck has quit [Read error: No route to host]
[16:27:00] -!- wboykinm [wboykinm!~quassel@132.198.159.96] has joined #leaflet
[16:28:07] -!- ybon has quit [Ping timeout: 246 seconds]
[16:30:26] -!- ybon [ybon!~ybon@ALagny-154-1-13-76.w83-112.abo.wanadoo.fr] has joined #leaflet
[16:38:34] -!- sumpfralle has quit [Read error: Connection reset by peer]
[16:44:00] <leehambley> hi all, I've dropped in to follow-up on https://groups.google.com/forum/?fromgroups=#!topic/leaflet-js/GvNc9nDJt4E - I've tried the suggestions in the thread, and wondered where one goes next for debugging that
[16:44:45] -!- phantoxeD has quit [Ping timeout: 252 seconds]
[16:50:57] -!- phantoneD has quit [Ping timeout: 244 seconds]
[16:51:33] -!- sumpfralle1 has quit [Ping timeout: 248 seconds]
[16:54:19] -!- morfic- has quit [Read error: Operation timed out]
[17:20:09] -!- odogono [odogono!~mohiam@cpc14-king9-2-0-cust212.19-1.cable.virginmedia.com] has joined #leaflet
[17:29:18] -!- L33TG33KG34R has quit [Ping timeout: 245 seconds]
[17:37:11] -!- PhilR8 [PhilR8!88a08d5d@gateway/web/freenode/ip.136.160.141.93] has joined #leaflet
[17:39:35] -!- leehambley has quit [Quit: leehambley]
[17:45:13] -!- djheinz has quit [Read error: Operation timed out]
[17:45:54] -!- PhilR8 has quit [Quit: Page closed]
[17:53:52] -!- wsjr has quit [Read error: Connection reset by peer]
[17:57:38] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[18:00:27] -!- LeelooMinai has quit [Ping timeout: 255 seconds]
[18:11:22] -!- skunkworks has quit [Quit: Leaving]
[18:11:50] -!- IchGuckLive has quit [Quit: ChatZilla 0.9.87 [Firefox 14.0.1/20120713225625]]
[18:11:52] -!- wboykinm has quit [Remote host closed the connection]
[18:13:07] -!- LeelooMinai has quit [Ping timeout: 240 seconds]
[18:15:09] -!- phantoxeD has quit [Ping timeout: 272 seconds]
[18:20:41] -!- LeelooMinai has quit [Ping timeout: 246 seconds]
[18:26:30] -!- phantoxeD has quit [Ping timeout: 245 seconds]
[18:47:43] -!- LeelooMinai has quit [Ping timeout: 255 seconds]
[18:52:14] -!- b_b [b_b!ejabberd@81.18.178.14] has parted #leaflet
[19:06:10] -!- vladimirek has quit [Remote host closed the connection]
[19:06:30] -!- L84Supper has quit [Quit: puff of smoke]
[19:06:39] -!- pcw_home has quit [Remote host closed the connection]
[19:06:52] -!- emel has quit [Excess Flood]
[19:07:14] -!- emel [emel!~emel@sd-22438.dedibox.fr] has joined #leaflet
[19:12:08] -!- leehambley has quit [Quit: leehambley]
[19:23:53] -!- gurumelo has quit [Ping timeout: 244 seconds]
[19:25:41] -!- gurumelo [gurumelo!~mari@li270-85.members.linode.com] has joined #leaflet
[19:41:29] -!- Anon6908 has quit [Client Quit]
[19:42:38] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[19:44:05] -!- pcw_home has quit [Remote host closed the connection]
[19:50:32] -!- OWhite has quit [Quit: ChatZilla 0.9.89 [Firefox 17.0/20121010150351]]
[19:51:39] -!- leehambley has quit [Ping timeout: 260 seconds]
[19:56:16] -!- djheinz has quit [Ping timeout: 252 seconds]
[20:09:41] -!- chillly [chillly!~chris@adsl-87-102-72-211.karoo.KCOM.COM] has joined #leaflet
[20:17:25] -!- Aero-Tec has quit [Ping timeout: 248 seconds]
[20:22:04] -!- bradsimantel [bradsimantel!~simantel@128.223.223.74] has joined #leaflet
[20:28:07] -!- gmagno has quit [Ping timeout: 240 seconds]
[20:32:43] -!- bradsimantel has quit [Quit: bradsimantel]
[20:38:08] -!- gurumelo has quit [Quit: irssi]
[20:43:29] -!- tjb1 has quit [Ping timeout: 246 seconds]
[20:47:26] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[20:52:12] -!- leehambley has quit [Ping timeout: 265 seconds]
[21:05:16] -!- DJ9DJ has quit [Quit: by(t)e]
[21:10:03] -!- odogono has quit [Quit: odogono]
[21:10:21] -!- chillly has quit [Quit: Leaving]
[21:17:21] -!- Thetawaves has quit [Quit: This computer has gone to sleep]
[21:18:40] -!- FinboySlick has quit [Quit: Leaving.]
[21:26:22] -!- chillly [chillly!~chris@adsl-87-102-72-211.karoo.KCOM.COM] has joined #leaflet
[21:26:53] -!- chillly has quit [Client Quit]
[21:42:32] -!- panasync has quit [Changing host]
[21:47:51] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[21:52:20] -!- leehambley has quit [Ping timeout: 244 seconds]
[21:53:08] -!- bradsimantel [bradsimantel!~simantel@128.223.223.67] has joined #leaflet
[22:07:44] -!- Brandonian has quit [Quit: Brandonian]
[22:08:17] -!- mk0 has quit [Quit: Leaving]
[22:16:17] -!- tjb1 has quit [Quit: tjb1]
[22:16:43] -!- jthornton has quit [Ping timeout: 252 seconds]
[22:16:56] -!- JT-Shop has quit [Ping timeout: 256 seconds]
[22:17:05] toudi_ is now known as micges
[22:20:22] -!- owhite has quit [Client Quit]
[22:22:13] -!- zod has quit [Ping timeout: 248 seconds]
[22:22:20] -!- zod [zod!~zod@smitty.knid.net] has joined #leaflet
[22:30:04] -!- the_wench has quit [Ping timeout: 260 seconds]
[22:31:49] -!- archivist has quit [Ping timeout: 260 seconds]
[22:41:45] -!- servos4ever has quit [Quit: ChatZilla 0.9.85 [SeaMonkey 2.0.11/20101206162726]]
[22:41:56] -!- zzolo has quit [Quit: zzolo]
[22:48:15] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[22:48:27] -!- bradsimantel has quit [Quit: bradsimantel]
[22:53:11] -!- leehambley has quit [Ping timeout: 272 seconds]
[22:55:03] -!- mhaberler has quit [Ping timeout: 260 seconds]
[23:03:43] -!- r00t4rd3d has quit [Read error: Connection reset by peer]
[23:19:05] -!- morfic- has quit [Ping timeout: 260 seconds]
[23:21:03] -!- rob_h has quit [Ping timeout: 272 seconds]
[23:21:05] -!- Loetmichel has quit [Ping timeout: 256 seconds]
[23:31:54] -!- ybon has quit [Ping timeout: 246 seconds]
[23:38:47] -!- asdfasd has quit [Ping timeout: 245 seconds]
[23:48:42] -!- leehambley [leehambley!~codebeake@port-3336.pppoe.wtnet.de] has joined #leaflet
[23:49:18] -!- Valen has quit [Quit: Leaving.]
[23:53:20] -!- leehambley has quit [Ping timeout: 260 seconds]
[23:54:47] -!- L33TG33KG34R has quit [Ping timeout: 245 seconds]
[23:55:52] -!- Nick001-Shop has quit [Remote host closed the connection]
[23:56:03] -!- zzolo [zzolo!~zzolo@c-75-72-229-64.hsd1.mn.comcast.net] has joined #leaflet