I have a Google heatmap that I want to make aware of users' locations. I want the map to automatically zoom into users' locations.
Currently the map centers on the lat/lon I provide.
// @Override
protected void startDemo() {
getMap().moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(34,-118.5), 12));
Does anyone have suggestions on how to make the heatmap location aware? I have looked at this question, but I haven't been able to make the heatmap location aware. Thanks.