ThinkGeo.com    |     Documentation    |     Premium Support

2 layer display problem

i have added point layer on my road's layer but i cannot display. first it gives error of index file i have created that file but still it cannot display. i do not know how to set extend of two layers


  winformsMap1.MapUnit = GeographyUnit.DecimalDegree;



            winformsMap1.CurrentExtent = new RectangleShape(73.005030, 33.689652, 73.046248, 33.666084);



            // add  baselayer 



            WorldMapKitWmsDesktopOverlay bslayer = new WorldMapKitWmsDesktopOverlay();

            bslayer.Projection = WorldMapKitProjection.DecimalDegrees;

            winformsMap1.Overlays.Add(bslayer);

            

            

            

            //make a feature source layer set it zoom level 



            ShapeFileFeatureLayer layer1 = new ShapeFileFeatureLayer(@"E:\Practices\attempt_1\attempt_1\bin\Debug\Shape\Roads.routable.shp");



            layer1.ZoomLevelSet.ZoomLevel01.DefaultLineStyle = LineStyles.LocalRoad3;

            layer1.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20;





            //makeoverlay layer and add to the winform

            LayerOverlay new = new LayerOverlay();

            new.Layers.Add("layer1", layer1);

            winformsMap1.Overlays.Add(new);



            //define POI's layer

            ShapeFileFeatureLayer poilayer = new ShapeFileFeatureLayer(@"E:\Practices\attempt_1\attempt_1\bin\Debug\POI-\POI_shp.shp");

            poilayer.ZoomLevelSet.ZoomLevel01.DefaultPointStyle = PointStyles.City1;

            poilayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20;



            LayerOverlay poi = new LayerOverlay();

           // poi.Layers.Add("layer1", layer1);

            poi.Layers.Add("POI", poilayer);

            winformsMap1.Overlays.Add("Point of interest", poi);


kindly tell me solution quickly.



Hello, 
  
 Thanks for your post, your code has no problem, just one thing, you can using one overlay for both Line layer and Point layer instead two overlay for each one. 
  
 So what’s the product version are you using? Could you please check your line shape file, if the features inside is really line. Like you can using MapSuiteExplorer to open the shapefile and see. 
  
 Or you can send the shapefile to us, attachment in this post or mail to forumsupport@thinkgeo.com
  
 Let me know your queries. 
  
 Regards, 
  
 Gary

i have also used individual overlay for both layers. but i didn’t work. my line shape file is displaying but that point shape layer does not display. i have send my shape file on the given email address

sir indivdually point layer is displayed but it cannot overlay on the line layer i am sending you my road shape file also on the given address kindly solve my issue



thanks forum i have solved my issuses. i have asked other questions in my email kindly answer them



Hello, 
  
 You are welcome, but looks like I didn’t get an email from you, where did you sent? 
  
 Also if you have anything, it’s better to post in the forums or create a ticket, it’s easier for us to track. 
  
 Regards, 
  
 Gary

i have on the email address u have given support@thinkgeo.com how to create a ticket?


my question are as follows:


I have few question regarding your sample data.

 



        
  • all of your shape files has missing spatial reference why?

  •     
  • and if a shape file has some spatial reference (geographic WGS 1984 projection or any other )it does not display why?

  •     
  • when the routing index is created what does .rtx and .rtg file means?

  •     
  • what is the base theory of these extension files?


 



Thanks for your questions!


The sample data provided with the samples is designed for use only within the specific sample applications that are provided. Thus they are stripped of any unnecessary data which explains the lack of prj files.


By default MapSuite does not read prj files but it does have the facility to do so. Check out this link for information on using the ConvertPrjToProj4 method: gis.thinkgeo.com/Support/Dis...fault.aspx


At this time we do not have an appropriate description of these files and their exact contents. These are simply the results of the Generate Routing Index method.