/* The MIT License (MIT) Copyright (c) 2015-2017 HyperTrack (http://hypertrack.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package io.hypertrack.sendeta.view; import android.content.Context; import android.support.v7.widget.Toolbar; import com.google.android.gms.maps.CameraUpdate; import com.google.android.gms.maps.CameraUpdateFactory; import com.google.android.gms.maps.model.LatLng; import com.hypertrack.lib.HyperTrack; import com.hypertrack.lib.HyperTrackMapAdapter; import com.hypertrack.lib.HyperTrackMapFragment; import io.hypertrack.sendeta.R; import io.hypertrack.sendeta.store.SharedPreferenceManager; /** * Created by piyush on 03/05/17. */ public class HomeMapAdapter extends HyperTrackMapAdapter { public Context mContext; private Toolbar toolbar; public HomeMapAdapter(Context mContext, Toolbar toolbar) { super(mContext); this.mContext = mContext; this.toolbar = toolbar; } @Override public Toolbar getToolbar(HyperTrackMapFragment hyperTrackMapFragment) { return toolbar; } @Override public Integer getToolbarLogoIcon(HyperTrackMapFragment hyperTrackMapFragment) { return R.drawable.ic_ht_logo; } @Override public String getOrderStatusToolbarDefaultTitle(HyperTrackMapFragment hyperTrackMapFragment) { return mContext.getString(R.string.app_name); } @Override public CameraUpdate getMapFragmentInitialState(HyperTrackMapFragment hyperTrackMapFragment) { if (SharedPreferenceManager.getLastKnownLocation() != null) { LatLng latLng = new LatLng(SharedPreferenceManager.getLastKnownLocation().getLatitude(), SharedPreferenceManager.getLastKnownLocation().getLongitude()); return CameraUpdateFactory.newLatLngZoom(latLng, 15.0f); } return super.getMapFragmentInitialState(hyperTrackMapFragment); } @Override public boolean setMyLocationEnabled(HyperTrackMapFragment hyperTrackMapFragment) { return HyperTrack.getConsumerClient().getActionIDs() == null; } @Override public boolean setMyLocationButtonEnabled(HyperTrackMapFragment hyperTrackMapFragment) { return HyperTrack.getConsumerClient().getActionIDs() == null; } @Override public boolean showUserInfoForActionID(HyperTrackMapFragment hyperTrackMapFragment, String actionID) { return HyperTrack.getConsumerClient().getActionIDs() != null && HyperTrack.getConsumerClient().getActionIDs().size() == 1 && HyperTrack.getConsumerClient().getAction(HyperTrack.getConsumerClient().getActionIDs().get(0)).hasActionFinished(); } @Override public boolean showPlaceSelectorView() { return true; } @Override public boolean showTrailingPolyline() { return true; } @Override public boolean showTrafficLayer(HyperTrackMapFragment hyperTrackMapFragment) { return false; } @Override public int[] getMapPadding(HyperTrackMapFragment hyperTrackMapFragment) { int bottom = mContext.getResources().getDimensionPixelSize(R.dimen.live_tracking_map_bottom_padding); int right = mContext.getResources().getDimensionPixelSize(R.dimen.map_side_padding); if (HyperTrack.getConsumerClient().getActionIDs() == null) { bottom = mContext.getResources().getDimensionPixelSize(R.dimen.home_map_bottom_padding); return new int[]{0, 0, 0, bottom}; } return new int[]{0, 0, right, bottom}; } @Override public boolean enableLiveLocationSharingView() { return true; } @Override public int getResetBoundsButtonIcon(HyperTrackMapFragment hyperTrackMapFragment) { return R.drawable.ic_reset_bounds_button; } }