-
-
Save yask123/a0ef4f3d26ef471b8bd4 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
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