94 lines
3.1 KiB
Java
94 lines
3.1 KiB
Java
|
package com.safemobile.dispatch;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.Log;
|
||
|
import android.view.LayoutInflater;
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.RelativeLayout;
|
||
|
import android.widget.TextView;
|
||
|
|
||
|
import androidx.annotation.NonNull;
|
||
|
|
||
|
import com.google.android.gms.maps.GoogleMap;
|
||
|
import com.google.android.gms.maps.model.Marker;
|
||
|
import com.safemobile.lib.SuperVehicle;
|
||
|
|
||
|
import java.text.DateFormat;
|
||
|
import java.text.SimpleDateFormat;
|
||
|
import java.util.Date;
|
||
|
import java.util.Hashtable;
|
||
|
import java.util.Locale;
|
||
|
|
||
|
|
||
|
public class GoogleMapsInfoBubble implements GoogleMap.InfoWindowAdapter {
|
||
|
private final String TAG = GoogleMapsInfoBubble.class.getName();
|
||
|
|
||
|
private final View mWindow;
|
||
|
private final Hashtable<Long, SuperVehicle> superVehHash;
|
||
|
private final Context context;
|
||
|
|
||
|
|
||
|
public GoogleMapsInfoBubble(LayoutInflater layoutInflater, Context context, Hashtable<Long, SuperVehicle> vehicles) {
|
||
|
this.context = context;
|
||
|
this.superVehHash = vehicles;
|
||
|
mWindow = layoutInflater.inflate(R.layout.map_marker_info_bubble, null);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public View getInfoWindow(@NonNull Marker marker) {
|
||
|
render(marker, mWindow);
|
||
|
return mWindow;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public View getInfoContents(@NonNull Marker marker) {
|
||
|
render(marker, mWindow);
|
||
|
return mWindow;
|
||
|
}
|
||
|
|
||
|
private void render(Marker marker, View view) {
|
||
|
long key = 0;
|
||
|
|
||
|
try {
|
||
|
key = Long.parseLong(marker.getTitle());
|
||
|
} catch (Exception ex) {
|
||
|
Log.v(TAG, "Unable to parse Google Maps Info Bubble title");
|
||
|
}
|
||
|
SuperVehicle vehicle = superVehHash.get(key);
|
||
|
|
||
|
RelativeLayout rlMapInfoBubbleInfo = view.findViewById(R.id.rlMapInfoBubbleInfo);
|
||
|
TextView tvUnitName = view.findViewById(R.id.tvUnitName);
|
||
|
TextView tvGPSLocation = view.findViewById(R.id.tvGPSLocation);
|
||
|
TextView tvTimeAgo = view.findViewById(R.id.tvTimeAgo);
|
||
|
TextView tvSpeed = view.findViewById(R.id.tvSpeed);
|
||
|
TextView tvStreetView = view.findViewById(R.id.tvStreetView);
|
||
|
ImageView streetView = view.findViewById(R.id.streetView);
|
||
|
rlMapInfoBubbleInfo.setVisibility(View.VISIBLE);
|
||
|
|
||
|
boolean isMilitaryTime = false;
|
||
|
Date positionTime = new Date(vehicle.timeGMT);
|
||
|
|
||
|
|
||
|
String timeFormat = isMilitaryTime
|
||
|
? "HH:mm:ss dd.MMM.yyyy"
|
||
|
: "hh:mm:ss a dd.MMM.yyy";
|
||
|
|
||
|
DateFormat format = new SimpleDateFormat(timeFormat, Locale.ENGLISH);
|
||
|
|
||
|
tvTimeAgo.setText(format.format(positionTime));
|
||
|
|
||
|
tvSpeed.setText(String.format(context.getResources().getString(R.string.speedMph), vehicle.speed));
|
||
|
|
||
|
String address = vehicle.Address != null ? vehicle.Address : "";
|
||
|
|
||
|
tvStreetView.setText(address);
|
||
|
streetView.setVisibility(address.length() > 0 ? View.VISIBLE : View.GONE);
|
||
|
tvStreetView.setVisibility(address.length() > 0 ? View.VISIBLE : View.GONE);
|
||
|
tvUnitName.setText(vehicle.name);
|
||
|
tvGPSLocation.setText("[" + String.format("%.4f", vehicle.lat)
|
||
|
+ "," + String.format("%.4f",vehicle.lng) + "]");
|
||
|
}
|
||
|
}
|
||
|
|