-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_withShelf.html
151 lines (121 loc) · 3.67 KB
/
index_withShelf.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!-- Mix of https://bl.ocks.org/mbostock/4699541 and https://bl.ocks.org/mbostock/9656675 -->
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.background {
fill: none;
pointer-events: all;
}
.feature {
fill: #ccc;
cursor: pointer;
}
.feature.active {
fill: orange;
}
.mesh {
fill: none;
stroke: #fff;
stroke-linecap: round;
stroke-linejoin: round;
}
.continent-bd {
fill: none;
stroke: #fff;
stroke-width: .5px;
}
.shelf-bd {
fill: none;
stroke: gray;
}
</style>
<body>
<script src="d3.v3.min.js"></script>
<script src="lib/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 700,
active = d3.select(null);
var projection = d3.geo.mercator()
.scale(130)
//.translate([width / 2, height / 2]);
.translate([width / 2, height / 1.5]);
var zoom = d3.behavior.zoom()
.translate([0, 0])
.scale(1)
.scaleExtent([1, 8])
.on("zoom", zoomed);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("rect")
.attr("class", "background")
.attr("width", width)
.attr("height", height)
.on("click", reset);
var g = svg.append("g")
.style("stroke-width", "1.5px");
svg
.call(zoom) // delete this line to disable free zooming
.call(zoom.event);
d3.json("refs/all.topojson", function(error, us) {
if (error) throw error;
console.log("us: ", us)
g.selectAll("path")
//.data(topojson.feature(us, us.objects.states).features)
.data(topojson.feature(us, us.objects.Continental_Shelf).features)
.enter().append("path")
.attr("d", path)
.attr("class", "feature")
.on("click", clicked);
// g.append("path")
// //.datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; }))
// .datum(topojson.mesh(us, us.objects.Continental_Shelf, function(a, b) { return a !== b; }))
// .attr("class", "mesh")
// .attr("d", path);
// g.append("path")
// .datum(topojson.mesh(us, us.objects.Continental_Shelf, function(a, b) { return a !== b; }))
// .attr("class", "shelf-bd")
// .attr("d", path);
// //show continents and shelves
// //c.f. http://bl.ocks.org/mbostock/4090848
// svg.insert("path", ".graticule")
// .datum(topojson.mesh(us, us.objects.Continents, function(a, b) { return a !== b && !(a.id / 1000 ^ b.id / 1000); }))
// .attr("class", "continent-bd")
// .attr("d", path);
// svg.insert("path", ".graticule")
// .datum(topojson.mesh(us, us.objects.Continental_Shelf, function(a, b) { return a !== b; }))
// .attr("class", "shelf-bd")
// .attr("d", path);
});
function clicked(d) {
if (active.node() === this) return reset();
active.classed("active", false);
active = d3.select(this).classed("active", true);
var bounds = path.bounds(d),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = .9 / Math.max(dx / width, dy / height),
translate = [width / 2 - scale * x, height / 2 - scale * y];
g.transition()
.duration(750)
.style("stroke-width", 1.5 / scale + "px")
.attr("transform", "translate(" + translate + ")scale(" + scale + ")");
}
function reset() {
active.classed("active", false);
active = d3.select(null);
g.transition()
.duration(750)
.style("stroke-width", "1.5px")
.attr("transform", "");
}
function zoomed() {
g.style("stroke-width", 1.5 / d3.event.scale + "px");
g.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}
</script>