|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NetmeraGeoLocation | |
---|---|
com.netmera.mobile |
Uses of NetmeraGeoLocation in com.netmera.mobile |
---|
Methods in com.netmera.mobile that return NetmeraGeoLocation | |
---|---|
NetmeraGeoLocation |
NetmeraDeviceDetail.getDeviceLocation()
Gets user's location |
NetmeraGeoLocation |
BaseContent.getNetmeraGeoLocation(java.lang.String key)
Gets the NetmeraGeoLocation object with the specified key. |
Methods in com.netmera.mobile with parameters of type NetmeraGeoLocation | |
---|---|
java.util.List<NetmeraContent> |
NetmeraService.boxSearch(NetmeraGeoLocation firstPoint,
NetmeraGeoLocation secondPoint,
java.lang.String locationSearchField)
Creates box using the given two location (latitude,longitude) data and searches inside that box. |
void |
NetmeraService.boxSearchInBackground(NetmeraGeoLocation firstPoint,
NetmeraGeoLocation secondPoint,
java.lang.String locationSearchField,
NetmeraCallback<java.util.List<NetmeraContent>> callback)
Creates box using the given two location (latitude,longitude) data and searches inside that box in the background thread.Since it runs on the background thread it does not block program.It is recommended over boxSearch() method. |
java.util.List<NetmeraContent> |
NetmeraService.circleSearch(NetmeraGeoLocation startLocation,
double distance,
java.lang.String locationSearchField)
Searches the content by taking given location as a base and retrieves the contents that located given distance far away. |
void |
NetmeraService.circleSearchInBackground(NetmeraGeoLocation startLocation,
double distance,
java.lang.String locationSearchField,
NetmeraCallback<java.util.List<NetmeraContent>> callback)
Searches the content by taking given location as a base and retrieves the contents that located given distance far away in the background thread.Since it runs on the background thread it does not block program.It is recommended over circleSearch() method. |
static void |
NetmeraPushSender.setBoxPush(NetmeraGeoLocation firstPoint,
NetmeraGeoLocation secondPoint)
Creates box using the given two location (latitude,longitude) data in order to send push notifications to devices registered inside that box. |
void |
BasePush.setBoxPush(NetmeraGeoLocation firstPoint,
NetmeraGeoLocation secondPoint)
Deprecated. use NetmeraPushObject to create push notifications.
After preparing, use NetmeraPushSender to send this
notification. Creates box using the given two location
(latitude,longitude) data in order to send push notifications
to devices registered inside that box. |
static void |
NetmeraPushSender.setCirclePush(NetmeraGeoLocation startLocation,
double distance)
Creates a circle by taking given location as a base and the distance as the radius in order to send push notifications to devices registered inside that circle. |
void |
BasePush.setCirclePush(NetmeraGeoLocation startLocation,
double distance)
Deprecated. use NetmeraPushObject to create push notifications.
After preparing, use NetmeraPushSender to send this
notification. Creates a circle by taking given location as a
base and the distance as the radius in order to send push
notifications to devices registered inside that circle. |
void |
NetmeraDeviceDetail.setDeviceLocation(NetmeraGeoLocation geoLocation)
Sets user's location for push registration. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |