Skip to content

Instantly share code, notes, and snippets.

@jlivni
Created September 17, 2013 23:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlivni/6602202 to your computer and use it in GitHub Desktop.
Save jlivni/6602202 to your computer and use it in GitHub Desktop.
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