summaryrefslogtreecommitdiff
path: root/plugins/Mapstraction/usermap.js
blob: 19ec54c39277667c8a571da57f07f0f743981bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
$(document).ready(function() {
     notices = [];
     $(".notice").each(function(){
        notice = getNoticeFromElement($(this));
        if(notice['geo'])
            notices.push(notice);
     });
     if($("#map_canvas").length && notices.length>0)
     {
        showMapstraction($("#map_canvas"), notices);
     }

     $('a.geo').click(function(){
        noticeElement = $(this).closest(".notice");
        notice = getNoticeFromElement(noticeElement);

        $.fn.jOverlay.options = {
            color : '#000',
            opacity : '0.6',
            zIndex : 99,
            center : false,
            bgClickToClose : true,
            autoHide : true,
            css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
        };
        html="<div id='map_canvas_popup' class='gray smallmap' style='width: 542px; height: 500px' />";
        html+="<button class='close'>&#215;</button>";
        html+=$("<div/>").append($(this).clone()).html();
        $().jOverlay({ "html": html });
        $('#jOverlayContent').show();
        $('#jOverlayContent button').click($.closeOverlay);
        
        showMapstraction($("#map_canvas_popup"), notice);

        return false;
     });
});

function getMicroformatValue(element)
{
    if(element[0].tagName.toLowerCase() == 'abbr'){
        return element.attr('title');
    }else{
        return element.text();
    }
}

function getNoticeFromElement(noticeElement)
{
    notice = {};
    if(noticeElement.find(".latitude").length){
        notice['geo']={'coordinates': [
            parseFloat(getMicroformatValue(noticeElement.find(".latitude"))),
            parseFloat(getMicroformatValue(noticeElement.find(".longitude")))] };
    }
    notice['user']={
        'profile_image_url': noticeElement.find("img.avatar").attr('src'),
        'profile_url': noticeElement.find(".author a.url").attr('href'),
        'screen_name': noticeElement.find(".author .nickname").text()
    };
    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 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)
     {
          var n = notices[i];

          var lat = n['geo']['coordinates'][0];
          var lon = n['geo']['coordinates'][1];

          if (lat < minLat) {
               minLat = lat;
          }

          if (lat > maxLat) {
               maxLat = lat;
          }

          if (lon < minLon) {
               minLon = lon;
          }

          if (lon > maxLon) {
               maxLon = lon;
          }

          pt = new mxn.LatLonPoint(lat, lon);
          mkr = new mxn.Marker(pt);

          mkr.setIcon(n['user']['profile_image_url']);
          mkr.setInfoBubble('<a href="'+ n['user']['profile_url'] + '">' + n['user']['screen_name'] + '</a>' + ' ' + n['html'] +
                            '<br/><a href="'+ n['url'] + '">'+ n['created_at'] + '</a>');

          mapstraction.addMarker(mkr);
     }

     bounds = new mxn.BoundingBox(minLat, minLon, maxLat, maxLon);

     mapstraction.setBounds(bounds);
}