ThinkGeo.com    |     Documentation    |     Premium Support

Can SimpleMarkerOverlay have Labels?

Hi,


Can SimpleMarkerOverlay have Labels ?



Gregory, 



Sorry SimpleMarkerOverlay didn't support style, so you can't use Labels. 



But you can use InMemoryMarkerOverlay instead, please try the code below: 


                InMemoryMarkerOverlay i = new InMemoryMarkerOverlay();
                WebImage w = new WebImage();
                w.Text = "labels";
                i.ZoomLevelSet.ZoomLevel01.CustomMarkerStyle = new PointMarkerStyle(w);



Regards, 



Gary