-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmap.html
More file actions
82 lines (73 loc) · 3.42 KB
/
map.html
File metadata and controls
82 lines (73 loc) · 3.42 KB
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
<html>
<!--
TODO:
-? slider - period: day/week/month/quarter/year/
-? slider - connectivity 25%/50%/75%/100%
- localization for demo text zh
demo graph text
map_load_text : "Ограничить по сходству",
map_load : "Ограничить по сходству",
map_period
- Aigents graph
- Aigents ui integration with search, trusts and properties
- browsing navigation (with back buttons in the top right corner)
-- enable social browsing if
--- change default analysis period to 1 month
--- user in public network
--- user is registered with aigents and accepted browsing
- configurable zoom
- configurable left-to-right
-- by alphabet
-- by similarity
- sentiment/intent - as color (blue - neutral, red - bad, green - good)
- merge fans/authorities with friends properly (now missing best friends)
- game goal
-- maximize social capital
--- maximizing inputs
--- minimizing outputs
---- my maximizing its quality
- parameters
-- halo width
-- node color
-- halo color
-- link color
-- zoom 1-5 - https://www.w3schools.com/jsref/dom_obj_range.asp
Legend:
- social capital/status - as color saturation
- similarity - as halo width
-->
<head><title>Aigents Map</title>
<meta http-equiv="refresh" content="1;url=https://aigents.com">
<meta name="norton-safeweb-site-verification" content="zxl582egesdh2aytioxxw1a72tmvyiuu2h-vlrfl0wuirir6zunf6428af8jacsttw0hyr5fvmzgsa69i-q5fq2aloex-nw6ibajuhla5ii307fa1fjj105vgz1f9pkn" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="icon" href="https://aigents.com/ui/img/aigent128.ico" type="image/x-icon">
<link rel="shortcut icon" href="/ui/img/aigent128.ico" type="image/x-icon" />
<link rel="stylesheet" href="/ui/jquery-ui-1.11.4.custom/jquery-ui.css">
<script src="/ui/jquery-1.11.1.js"></script>
<script src="/ui/jquery-ui-1.11.4.custom/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="/ui/aigents-wui.css?80"></link>
<script type="text/javascript" src="/ui/aigents-al.js?2"></script>
<script type="text/javascript" src="/ui/aigents-map.js?2"></script>
<!-- Google -->
<script src="https://apis.google.com/js/client:platform.js?onload=startApp" async defer></script>
<meta name="google-signin-client_id" content="638660736503-ip2avfmusv38va2jn8fub8cf4c4oobm7.apps.googleusercontent.com"></meta>
<meta property="og:title" content="Aigents for everyone"/>
<meta property="og:description" content="Aigents - helping to monitor, extract, evaluate and share information on the Internet, adjusting to your needs and learning the preferences."/>
<meta property="og:image" content="http://aigents.com/img/aigents-find-share.jpg"/>
<meta property="og:url" content="http://aigents.com"/>
<meta property="fb:app_id" content="763733953664689"/>
<style>
.map-label {text-anchor:middle;font-size:18;}
.map-text-middle {text-anchor:middle;}
.map-bar {background:#2191c0;padding: 6px 4px 2px 4px;overflow:auto;}
.map-item {cursor:pointer;color:#ffffff;display:inline;padding: 4px 4px 4px 4px;}
.map-hover {cursor:pointer;background:#77d5f7;color:#04398e;display:inline;padding: 4px 4px 4px 4px;}
.map-check {cursor:pointer;background:#0871A0;color:#ffffff;display:inline;padding: 4px 4px 4px 4px;}
.map-toolbar {display:inline;float:right;padding: 0px 0px 0px 0px;}
.map-button {display:inline;}
</style>
</head>
<body>
If you are not redirected automatically, follow the link to <a href='https://aigents.com'>aigents.com</a>
</body>
</html>