how can I use fontimagesource as the source for my pins?
SUMMARY
I would like to use fontimageSource for the source of my images for my pins
eg:
ImageSource myicon = new FontImageSource() { FontFamily = DeviceInfo.Platform == DevicePlatform.iOS ? "weathericons" : "weathericons.ttf#", Glyph = "\uf019", Size = MapIconSize, Color = Color.Red };
Once I have myicon above I would like to do something like:
Pin newPin = new Pin() { Position = center, Label = "My red icon ", Type = PinType.Generic, Icon = BitmapDescriptorFactory.FromImageSource(my icon) }
Is there anyway to do this - I have spend all day today trying to find a way of using a imagesource but have not been able to work it out?
DETAILS
Description above
PLATFORMS
- [X] Android
- [X ] iOS
I don’t think it is possible, however you are always welcome to submit a pr in case u find a way how to do it