Skip to content

Instantly share code, notes, and snippets.

@yask123
Created October 30, 2015 12:04
Show Gist options
  • Save yask123/6edb4f6fbd1a70022de5 to your computer and use it in GitHub Desktop.
Save yask123/6edb4f6fbd1a70022de5 to your computer and use it in GitHub Desktop.
if (response.hits){
console.log(response.hits.hits.length);
var l = response.hits.hits.length;
document.getElementById('count').innerHTML = response.hits.hits.length +1;
for(var i=0;i<l;i++)
{
var data = {
color: '#2962FF',
lat: response.hits.hits[i]._source.latitude,
lon: response.hits.hits[i]._source.longitude,
size: 5
};
globe.addLevitatingBlock(data);
}
globe.center(data);
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment