pubnub / eon-map

Realtime maps with PubNub and MapBox.
https://www.pubnub.com/developers/eon/
MIT License
135 stars 51 forks source link

added {transform} option. #3

Closed stephenlb closed 9 years ago

stephenlb commented 9 years ago

Transformation Option!

return top 10 items sorted.

eon.chart({
    channel   : 'ermahgerd',
    transform : function(m) {
        return [{ latlng: [m.lat, m.lng] }];
    }
});