Last active
December 18, 2015 16:08
-
-
Save deciob/5808864 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# first check if there is no histogram around... | |
if @g.selectAll('path')[0].length == 0 | |
@bar = @g.selectAll("g.bar") | |
.data(data) | |
.enter().append("g") | |
@bar.append("rect") | |
# | |
# ...more code... | |
# | |
else | |
@g.selectAll("rect") | |
.data(data) | |
.transition() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"lat":35.8706911472, | |
"lng":104.1904317352, | |
"state":"inactive", | |
"size":2, | |
"id":122, | |
"uique_id":262.0611228824 | |
}, | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
initOverlays: -> | |
self = this | |
# Remove loading gif | |
$(".ajax-loader").hide() | |
@data = @collection.parseDataForMap() | |
@max = @collection.getMaxVal() | |
# Create an overlay. | |
overlay = new google.maps.OverlayView() | |
# Add the container when the overlay is added to the map. | |
overlay.onAdd = -> | |
layer = d3.select(@getPanes().overlayMouseTarget) | |
.append("div").attr("class", "locations") | |
self.drawSvg = _.bind self.drawSvg, @, layer, self | |
overlay.draw = -> | |
self.drawSvg self.data | |
# Bind our overlay to the map… | |
overlay.setMap @map |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drawSvg: (layer, self, data) -> | |
# | |
# ... more code... | |
# | |
marker = layer.selectAll("svg") | |
.data(data, (d) -> d.uique_id) | |
.each(transform) # update existing markers | |
.attr("class", (d) -> d.state) | |
enter = marker.enter().append("svg:svg") | |
.each(transform) | |
.attr("class", (d) -> d.state) | |
# Lets position the text first (under the circle), | |
# so it does not interfere with the click events. | |
# Only works because our circles are semi-transparent. | |
txt = enter.append("svg:text") | |
.each(transformTxt) | |
.attr("dy", ".31em") | |
.text((d) -> d.size) | |
.style("font-size", (d) -> | |
s = self.getFontSize d.size | |
"#{s}px" | |
) | |
circle = enter.append("svg:circle") | |
.each(addEventListeners) | |
.each(transformCircle) | |
exit = marker.exit() | |
#.each(removeEventListener) # TODO? | |
.remove() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment