Open hdrdavies opened 8 years ago
To set the repaint
method to a global variable, see how it has been done in this code:
http://bl.ocks.org/amenadiel/83a4eda7ee36c312c7a6
window['MarkerClusterer'] = MarkerClusterer;
...
MarkerClusterer.prototype['repaint'] = MarkerClusterer.prototype.repaint;
This happens in the phonegap preview.
An alternative to using the
repaint()
method could be to clear the markers and set the markers again, as shown here:http://stackoverflow.com/a/9028455/5111113