0

I'm subscribing to a data stream that gets pushed coordinates, I want to place a marker on the map every time the listener gets a new point. What do I need to do to put the drawMarker code on the correct thread or in the correct scope?

@Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        enableMyLocation();
        subscribe();
    }

    public void drawLatestPoint(LatLng p) {
        System.out.println(p);
        mMap.addMarker(new MarkerOptions().position(p).title("Marker in Sydney"));
    }

    private void subscribe(){
        pubNub.subscribe()
                .channels(Arrays.asList("my_channel")) // subscribe to channel groups
                .execute();

        pubNub.addListener(new SubscribeCallback() {

            @Override
            public void message(PubNub pubnub, PNMessageResult message) {
                if (message.getMessage().get("lat") != null && message.getMessage().get("lng") != null) {
                    double lat = message.getMessage().get("lat").doubleValue();
                    double lng = message.getMessage().get("lng").doubleValue();
                    LatLng point = new LatLng(lat,lng);
                    drawLatestPoint(point);
                }
            }
        });
    }

2 Answers 2

2

You can use runOnUiThread to run the code in the GUI thread:

runOnUiThread(new Runnable() {
    @Override
    public void run() {
       // Your code to run in GUI thread here
    }
});
Sign up to request clarification or add additional context in comments.

1 Comment

Thanks, I didn't realize you could simply invoke other threads.
0

Make sure that your pubsub has access to a Context object (can be the Application context or the Service context). Then put the required code inside the run method :

// Get a handler that can be used to post to the main thread
Handler mainHandler = new Handler(context.getMainLooper());

Runnable myRunnable = new Runnable() {
    @Override 
    public void run() {....} // This is your code
};
mainHandler.post(myRunnable);

Reference

2 Comments

Where is Handler coming from? AS tells me it doesn't exist.
android.os.Handler is a class in the Android framework.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.