ThinkGeo.com    |     Documentation    |     Premium Support

World Map Kit and Custom Overlays

Hello,


Newbie here. Yesterday I managed to get markers working the way I want on the Web Edition by using custom overlays, now I am trying to integrate the street maps and am having trouble.


Are there any code samples for the Map Kit on Web Edition besides the 1 C# example on the DVD?


I can't figure out how to make this line compatible with using custom overlays


renderMap.LoadLayers(Map1.StaticOverlay.Layers, Map1.StaticOverlay.Layers);


 


 Thanks



Hi Matt,



Custom Overlay is not allowed to work with Default Overlays. The following code specifies how to use CustomOverlays in WorldMapKit.LayerOverlay layerOverlay = new LayerOverlay("StaticOverlay", true, TileType.MultipleTile);
Map1.CustomOverlays.Add(layerOverlay);
renderMap.LoadLayers(layerOverlay.Layers, layerOverlay.Layers);

If you have any questions please let me know.



Thanks,



Howard