I would like to add different points on a google map as Markers. Each Marker can be a different color.
Using the standard GoogleMaps library, this worked with the AddMarker2 class where I could specify a HUE_<name>. However, this library didn't let me remove individual markers (so I could add them back in as the location changed).
Using GoogleMapExtras library I can remove them, (with .REMOVE) but there is no color specification that I've been able to find.
Using the Extras library again, I can switch over to using circles, which can be any color (not just those available with Addmarker2 and HUE_xxx), but I lose the ability to put text or snippets!
Right now, the only alternative seems to be creating multiple icons of different colors, and the Extras library to add them in with
Dim Markeroptions1 as Markeroptions
Markeroptions1.Icon=xxx
But that of course limits the user to whatever colors I provide, rather than a colorpicker dialog.
Does anyone know how I can use the Extras library, keep Title and Snippets, but change the colors of the map markers?
Thanks!
Using the standard GoogleMaps library, this worked with the AddMarker2 class where I could specify a HUE_<name>. However, this library didn't let me remove individual markers (so I could add them back in as the location changed).
Using GoogleMapExtras library I can remove them, (with .REMOVE) but there is no color specification that I've been able to find.
Using the Extras library again, I can switch over to using circles, which can be any color (not just those available with Addmarker2 and HUE_xxx), but I lose the ability to put text or snippets!
Right now, the only alternative seems to be creating multiple icons of different colors, and the Extras library to add them in with
Dim Markeroptions1 as Markeroptions
Markeroptions1.Icon=xxx
But that of course limits the user to whatever colors I provide, rather than a colorpicker dialog.
Does anyone know how I can use the Extras library, keep Title and Snippets, but change the colors of the map markers?
Thanks!