Commit 0fa0049330ac3f02c2493ec1c22b330b3be5725c

  • avatar
  • arvind
  • Mon Sep 16 22:15:00 IST 2013
Modifying map UI
  
2828 // info.policyExplain(props.rating) + '</small></p>'
2929 L.popup()
3030 .setLatLng(e.latlng)
31 .setContent("<div style='height:250px;overflow-y:scroll;'><b>"+e.target.feature.properties.name+"</b></br><span class='yellow'>"+e.target.feature.properties.rating+"</span>/<span class='red'>5</span><small>&gt;&gt; "+info.policyExplain(e.target.feature.properties.rating)+"</small></br>Pros:"+e.target.feature.properties.pros+"</br>Cons:"+e.target.feature.properties.cons+"</br><a href=#>Funding</a></br><a href=#>Policy</a></div>")
31 .setContent("<div style='height:250px;overflow-y:scroll;'><b>"+e.target.feature.properties.name+"</b></br><span class='yellow'>"+e.target.feature.properties.rating+"</span>/<span class='red'>5</span><small>&gt;&gt; "+info.policyExplain(e.target.feature.properties.rating)+"</small></br>Pros:"+e.target.feature.properties.pros+"</br>Cons:"+e.target.feature.properties.cons+"</br><a href='#/policies/"+e.target.feature.properties.name+"'>Read more...</a></br></div>")
3232 .openOn(map);
3333
3434// info.update(layer.feature.properties);
9191 'licenseType': 'CR',
9292 'licenseCost': '120000000 INR',
9393 'licenseRange': '100 KM',
94 'url':'#/survey/gka',
94 'survey':'#/survey/gka',
95 'profile':'#/profile/gka',
96 'research': '#/research/gka',
9597 'effectiveRange': '15 KM'
9698 },
9799 {
107107 'licenseType': 'CR',
108108 'licenseCost': '120000000 INR',
109109 'licenseRange': '100 KM',
110 'url':'#/survey/llv',
110 'research':'#/research/llv',
111 'profile':'#/profile/llv',
112 'survey':'#/survey/llv',
111113 'effectiveRange': '15 KM'
112114 },
113115 {
123123 'licenseType': 'CR',
124124 'licenseCost': '120000000 INR',
125125 'licenseRange': '100 KM',
126 'url':'#/survey/rbk',
126 'research':'#/research/rbk',
127 'profile':'#/profile/rbk',
128 'survey':'#/survey/rbk',
127129 'effectiveRange': '35 KM'
128130 },
129131 {
139139 'licenseType': 'CR',
140140 'licenseCost': '1 Crore',
141141 'licenseRange': '100 KM',
142 'url':'#/survey/kmv',
142 'research':'#/research/kmv',
143 'profile':'#/profile/kmv',
144 'survey':'#/survey/kmv',
143145 'effectiveRange': '70 KM'
144146 }
145147];
21232123 'fillOpacity':0.7});
21242124 lg.addLayer(c);
21252125 lg.addLayer(d);
2126 c.bindPopup("<a href='"+lat_lng[i]['url']+"'>"+lat_lng[i]['stnName']+"</a>");
2126 c.bindPopup("<a href='"+lat_lng[i]['survey']+"'>"+lat_lng[i]['stnName']+"</a></br><a href='"+lat_lng[i]['profile']+"'>Profile</a></br><a href='"+lat_lng[i]['research']+"'>Research</a>");
21272127 c.addEventListener('mousemove',function(e){
21282128 e.target.openPopup();
21292129 });