ThinkGeo.com    |     Documentation    |     Premium Support

Well know binary to GeoJson

I have a SQL Server database that I keep my feature layers in…I just installed and referenced MapSuite 7.0, I’m hoping that there is good functionality int 7.0 to translate a BaseShape to GeoJson layer. I would like to take the WKB out of my data base and turn it into GeoJson on the serverpass the geoJson object back to the browser blient and display the fields on a map.



Any help is greatly appreciated!!!


Hi Robert: 
  
 Thanks for you post and welcome to Mapsuite World! Would you please get the latest version 7.0.15.0 or 7.0.0.15 and try the following code:  
  
             RectangleShape shape = new RectangleShape(-180, 90, 180, -90); 
             Feature featuredfd = new Feature(shape.GetWellKnownBinary()); 
             String geoJsonString = featuredfd.GetGeoJson(); 
  
 if you have any more question , please feel free to let us know. 
  
 Best Regards 
  
 Summer