I am pretty much a novice at Android development, so please feel free to describe in very simple terms any advice you may give in response to my query.
I would like my application to start by displaying an Activity zoomed out to an extent that shows both my current location and that of a marker that I have placed on a map some distance from me.
I have successfully placed and displayed the remote marker the on the map and have found this class: LatLngBounds.Builder, which allows me to determine the bounds of all locations I am interested in, by supplying it the locations via its include method.
I obviously know the LatLng of my remote marker, but rather than going through the rigmarole of getting my current location using Google Play services and the location services API was wondering if, as my location has already been determined and is being displayed as the standard Google small blue circle, by virtue of me having set map.setMyLocationEnabled(true), whether my code has access to this ‘marker’. If it has, and I somehow know its ID, then could I not simply determine my location from [currentLocationBlueCircleMarker].getPosition()?
Thank you