Would it be possible/sensible to allow inline base64 encoded icons for cluster markers? I use this for google maps markers.
One possible option I can see, is to set the imagePath option to an object. For example:
var options = {
imagePath: {
'1': 'data:image/png;base64,.....',
'2': 'data:image/png;base64,......'
}
}
Would it be possible/sensible to allow inline base64 encoded icons for cluster markers? I use this for google maps markers.
One possible option I can see, is to set the
imagePathoption to an object. For example: