I want to display my shapefile data on bing map using ASP.NET.
Its an web application.
I don't want to use any third party tool for shapefile conversion.
2 Answers 2
GeoServer has native support for Shape Files. You can add them individually or by folder. It's not recommended for production environments, but it is quite good.
You don't say anything about what mapping technologies you propose to use. OpenLayers will allow you to show overlays over a Bing map.
If the ShapeFiles are not large you can parse these into another format and overlay them on Bing Maps as raw shapes. I have a good code sample on how to do this as part of a larger project I've been working on of spatial tools for Bing Maps here: https://mapstoolbox.codeplex.com/
If your shapefiles are large it is best to import them into a spatial database like SQL 2008, 2012, or Azure. And then create a dynamic tile layer which turns the data into an image on the fly. Here are some useful blog posts if going taking this approach:
http://rbrundritt.wordpress.com/2009/11/26/dynamic-tile-layers-in-the-bing-maps-silverlight-control/
-
Here are some additional resources: blogs.bing.com/maps/2013/07/31/… blogs.bing.com/maps/2013/08/05/…rbrundritt– rbrundritt2014年09月18日 15:59:30 +00:00Commented Sep 18, 2014 at 15:59