List of usage examples for android.location Location Location
Location
From source file:org.wso2.iot.agent.services.location.LocationService.java
private void broadcastLocation(Location location) { Intent broadcastIntent = new Intent(); broadcastIntent.setAction(Constants.LOCATION_UPDATE_BROADCAST_ACTION); broadcastIntent.putExtra(Constants.Location.LOCATION, location); sendBroadcast(broadcastIntent);/*from w w w . j a va 2 s .c om*/ publishLocationInfo(location); }