Example usage for android.location Location Location

List of usage examples for android.location Location Location

Introduction

In this page you can find the example usage for android.location Location Location.

Prototype

Location

Source Link

Usage

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);
}