Created
September 17, 2013 23:31
-
-
Save jlivni/6602202 to your computer and use it in GitHub Desktop.
This file contains 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
function highlightCorrelations(currentMarker){ | |
// first make all the airports small | |
$.each(airports, function(id, marker) { | |
marker.setIcon(getIcon(2, 'black')); | |
}); | |
// for each airport correlated to the selected airport, set it's icon to red | |
$.each(currentMarker.correlations, function(i, correlation) { | |
var marker = airports[correlation[0]]; | |
marker.setIcon(getIcon(correlation[1], 'red')); //getIcon returns a circle symbol | |
}); | |
} | |
function getIcon(scale, color) { | |
return { | |
path: google.maps.SymbolPath.CIRCLE, | |
fillColor: color || 'black', | |
fillOpacity: .6, | |
strokeColor: 'white', | |
strokeWeight: .5, | |
scale: scale * Math.pow(1.4, map.getZoom()) // Bigger circles as you zoom in | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment