X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FMapstraction%2Fusermap.js;h=53cfe6bb0cdd9381fcf39d50ad4354db5a8c8cf0;hb=0b53b6768e03932f4beec6b6655763e6ecedc36d;hp=169686a5040038942d8e9ba86802563be1fec342;hpb=7e8ce8fe8dce936b678208716e007334abc43b62;p=quix0rs-gnu-social.git diff --git a/plugins/Mapstraction/usermap.js b/plugins/Mapstraction/usermap.js index 169686a504..53cfe6bb0c 100644 --- a/plugins/Mapstraction/usermap.js +++ b/plugins/Mapstraction/usermap.js @@ -1,14 +1,86 @@ -$(document).ready(function() { - var mapstraction = new mxn.Mapstraction("map_canvas", _provider); +function scrapeNotices(user) +{ + var notices = []; + $(".notice").each(function(){ + var notice = getNoticeFromElement($(this)); + if (user) { + notice['user'] = user; + } else { + notice['user'] = getUserFromElement($(this)); + } + if(notice['geo']) + notices.push(notice); + }); + + return notices; +} + +function scrapeUser() +{ + var avatarURL = $(".entity_profile .entity_depiction img.avatar").attr('src'); + var profileURL = $(".entity_profile .entity_nickname .url").attr('href'); + var nickname = $(".entity_profile .entity_nickname .nickname").text(); + + return { + 'profile_image_url': avatarURL, + 'profile_url': profileURL, + 'screen_name': nickname + }; +} + +function getMicroformatValue(element) +{ + if(element[0].tagName.toLowerCase() == 'abbr'){ + return element.attr('title'); + }else{ + return element.text(); + } +} + +function getNoticeFromElement(noticeElement) +{ + var notice = {}; + + if(noticeElement.find(".geo").length) { + var latlon = noticeElement.find(".geo").attr('title').split(";"); + notice['geo']={'coordinates': [ + parseFloat(latlon[0]), + parseFloat(latlon[1])] }; + } + + notice['html'] = noticeElement.find(".entry-content").html(); + notice['url'] = noticeElement.find("a.timestamp").attr('href'); + notice['created_at'] = noticeElement.find("abbr.published").text(); + + return notice; +} + +function getUserFromElement(noticeElement) +{ + var avatarURL = noticeElement.find("img.avatar").attr('src'); + var profileURL = noticeElement.find(".author a.url").attr('href'); + var nickname = noticeElement.find(".author .nickname").text(); + + return { + 'profile_image_url': avatarURL, + 'profile_url': profileURL, + 'screen_name': nickname + }; +} + +function showMapstraction(element, notices) { + if(element instanceof jQuery) element = element[0]; + if(! $.isArray(notices)) notices = [notices]; + var mapstraction = new mxn.Mapstraction(element, _provider); var minLat = 181.0; var maxLat = -181.0; var minLon = 181.0; var maxLon = -181.0; - for (var i in _notices) + for (var i in notices) { - var n = _notices[i]; + var n = notices[i]; var lat = n['geo']['coordinates'][0]; var lon = n['geo']['coordinates'][1]; @@ -28,12 +100,18 @@ $(document).ready(function() { if (lon > maxLon) { maxLon = lon; } - } - var myPoint = new mxn.LatLonPoint(minLat + Math.abs(maxLat - minLat)/2, - minLon + Math.abs(maxLon - minLon)/2); + pt = new mxn.LatLonPoint(lat, lon); + mkr = new mxn.Marker(pt); + + mkr.setIcon(n['user']['profile_image_url'], [24, 24]); + mkr.setInfoBubble('' + n['user']['screen_name'] + '' + ' ' + n['html'] + + '
'+ n['created_at'] + ''); + + mapstraction.addMarker(mkr); + } - // display the map centered on a latitude and longitude (Google zoom levels) + bounds = new mxn.BoundingBox(minLat, minLon, maxLat, maxLon); - mapstraction.setCenterAndZoom(myPoint, 9); -}); + mapstraction.setBounds(bounds); +}