*
* @param address the address to search for.
* @param callback methods to call when the query returns.
*/
public void getLocations(String address, final LocationCallback callback) {
GeocoderImpl.impl.getLocations(jsoPeer, address, new LocationsCallback() {
@Override
public void callback(Response response) {
int statusCode = response.getStatus().getCode();
if (statusCode == StatusCodes.SUCCESS) {
JSList<Placemark> placemarkList = response.getPlacemarks();