อยากได้วิธีการหรือ code การส่งค่า lat และ long ของโทรศัพท์มือถือเพื่อมาเก็บไว้ที่ server และมีการอับเดททุกครั้งที่มีการเปลี่ยน location
เพื่อนำไปแสงดบนแผนที่ไม่ทราบว่าพอจะทำได้อย่างไรครับ
private final LocationListener listener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
// A new location update is received. Do something useful with it. In this case,
// we're sending the update to a handler which then updates the UI with the new
// location.
Message.obtain(mHandler,
UPDATE_LATLNG,
location.getLatitude() + ", " +
location.getLongitude()).sendToTarget();
...
}
...
};
mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
10000, // 10-second interval.
10, // 10 meters.
listener);
เมื่อเราได้ค่า lat,long แล้ว เราส่งค่าไปที่ sever แล้วก็นำค่า lat long นี้ไป up ขึ้นบนแผนที่โดยเมื่อมีการเปลียนแปลงก็ให้มีการเคลื่อนไหวไปด้วยเราทำได้เลยหรือเปล่าครับ