Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Google and OSM GeoPoint activities into one activity using the common MapFragment interface. #2776

Closed
Closed
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8493cd0
Make a backup copy of GeoPointMapActivity, as GeoPointGoogleMapActivity.
zestyping Jan 10, 2019
c609aba
Add "animate" parameter to all map viewport movement methods.
zestyping Jan 10, 2019
f1aee90
Rename MapFragment.getPointsOfPoly to getPolyPoints; rename Draggable…
zestyping Jan 10, 2019
ac7c445
Add MapFragment support for marker (single-point) features.
zestyping Jan 10, 2019
568823a
Add MapFragment support for a drag-end listener.
zestyping Jan 10, 2019
627a9df
Add MapFragment support for getting the location provider.
zestyping Jan 10, 2019
c69bf44
Migrate GeoPointMapActivity to use the MapFragment interface.
zestyping Jan 10, 2019
c02a7ec
Allow manual testers to use the volume buttons to switch between the …
zestyping Jan 10, 2019
2ca7710
Fix GeoPointGoogleMapActivityTest.
zestyping Jan 14, 2019
3b89c93
Fix SpotBugs complaint.
zestyping Jan 14, 2019
c0b6c30
Log warnings if Marker objects contain invalid data (should never hap…
zestyping Jan 15, 2019
305d5c3
Use ternary operators as suggested in code review.
zestyping Jan 15, 2019
330a306
Rename locationFromIntent to pointFromIntent (it is related to the re…
zestyping Jan 16, 2019
6eeb00a
Preserve the incoming point's alt and sd fields.
zestyping Jan 16, 2019
93f30fd
Rename enableShowLocation to enableZoomButton because it enables the …
zestyping Jan 16, 2019
ee12532
Disable long-pressing while point is initially set from the intent.
zestyping Jan 16, 2019
29d96fb
Resume GPS tracking after GeoPointMapActivity is stopped and restarted.
zestyping Jan 17, 2019
ac36f6f
Prevent NPE on activity stop in BaseGeoMapActivity.
zestyping Jan 17, 2019
a792aa1
Remove unused errorDialog field.
zestyping Jan 17, 2019
4fc6968
Remove old GeoPointGoogleMapActivity and GeoPointOsmMapActivity.
zestyping Jan 25, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions collect_app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ the specific language governing permissions and limitations under the License.
<activity
android:name=".activities.GeoPointMapActivity"
android:configChanges="orientation" />
<activity
android:name=".activities.GeoPointGoogleMapActivity"
android:configChanges="orientation" />
<activity
android:name=".activities.GeoPointOsmMapActivity"
android:configChanges="orientation" />
Expand Down
Loading